llvm/lld/test/wasm/gc-imports.s
Wouter van Oortmerssen 9647a6f719 [WebAssembly] Added initial type checker to MC Assembler
This to protect against non-sensical instruction sequences being assembled,
which would either cause asserts/crashes further down, or a Wasm module being output that doesn't validate.

Unlike a validator, this type checker is able to give type-errors as part of the parsing process, which makes the assembler much friendlier to be used by humans writing manual input.

Because the MC system is single pass (instructions aren't even stored in MC format, they are directly output) the type checker has to be single pass as well, which means that from now on .globaltype and .functype decls must come before their use. An extra pass is added to Codegen to collect information for this purpose, since AsmPrinter is normally single pass / streaming as well, and would otherwise generate this information on the fly.

A `-no-type-check` flag was added to llvm-mc (and any other tools that take asm input) that surpresses type errors, as a quick escape hatch for tests that were not intended to be type correct.

This is a first version of the type checker that ignores control flow, i.e. it checks that types are correct along the linear path, but not the branch path. This will still catch most errors. Branch checking could be added in the future.

Differential Revision: https://reviews.llvm.org/D104945
2021-07-09 14:07:25 -07:00

103 lines
3.8 KiB
ArmAsm

# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %s -o %t.o
# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %S/Inputs/undefined-globals.s -o %t_globals.o
# RUN: wasm-ld --allow-undefined -o %t1.wasm %t.o %t_globals.o
.functype unused_undef_function (i64) -> (i64)
.functype used_undef_function () -> (i32)
.functype use_undef_global () -> (i64)
foo:
.functype foo (i64) -> (i64)
local.get 0
call unused_undef_function
end_function
.globl _start
_start:
.functype _start () -> ()
call used_undef_function
drop
call use_undef_global
drop
end_function
# RUN: obj2yaml %t1.wasm | FileCheck %s
# CHECK: - Type: IMPORT
# CHECK-NEXT: Imports:
# CHECK-NEXT: - Module: env
# CHECK-NEXT: Field: used_undef_function
# CHECK-NEXT: Kind: FUNCTION
# CHECK-NEXT: SigIndex: 0
# CHECK-NEXT: - Module: env
# CHECK-NEXT: Field: used_undef_global
# CHECK-NEXT: Kind: GLOBAL
# CHECK-NEXT: GlobalType: I64
# CHECK-NEXT: GlobalMutable: false
# CHECK-NEXT: - Type:
# CHECK: - Type: CUSTOM
# CHECK-NEXT: Name: name
# CHECK-NEXT: FunctionNames:
# CHECK-NEXT: - Index: 0
# CHECK-NEXT: Name: used_undef_function
# CHECK-NEXT: - Index: 1
# CHECK-NEXT: Name: _start
# CHECK-NEXT: - Index: 2
# CHECK-NEXT: Name: use_undef_global
# CHECK-NEXT: GlobalNames:
# CHECK-NEXT: - Index: 0
# CHECK-NEXT: Name: used_undef_global
# CHECK-NEXT: - Index: 1
# CHECK-NEXT: Name: __stack_pointer
# CHECK-NEXT: ...
# RUN: wasm-ld --no-gc-sections --allow-undefined \
# RUN: -o %t1.no-gc.wasm %t.o %t_globals.o
# RUN: obj2yaml %t1.no-gc.wasm | FileCheck %s -check-prefix=NO-GC
# NO-GC: - Type: IMPORT
# NO-GC-NEXT: Imports:
# NO-GC-NEXT: - Module: env
# NO-GC-NEXT: Field: unused_undef_function
# NO-GC-NEXT: Kind: FUNCTION
# NO-GC-NEXT: SigIndex: 0
# NO-GC-NEXT: - Module: env
# NO-GC-NEXT: Field: used_undef_function
# NO-GC-NEXT: Kind: FUNCTION
# NO-GC-NEXT: SigIndex: 1
# NO-GC-NEXT: - Module: env
# NO-GC-NEXT: Field: unused_undef_global
# NO-GC-NEXT: Kind: GLOBAL
# NO-GC-NEXT: GlobalType: I64
# NO-GC-NEXT: GlobalMutable: false
# NO-GC-NEXT: - Module: env
# NO-GC-NEXT: Field: used_undef_global
# NO-GC-NEXT: Kind: GLOBAL
# NO-GC-NEXT: GlobalType: I64
# NO-GC-NEXT: GlobalMutable: false
# NO-GC-NEXT: - Type:
# NO-GC: - Type: CUSTOM
# NO-GC-NEXT: Name: name
# NO-GC-NEXT: FunctionNames:
# NO-GC-NEXT: - Index: 0
# NO-GC-NEXT: Name: unused_undef_function
# NO-GC-NEXT: - Index: 1
# NO-GC-NEXT: Name: used_undef_function
# NO-GC-NEXT: - Index: 2
# NO-GC-NEXT: Name: __wasm_call_ctors
# NO-GC-NEXT: - Index: 3
# NO-GC-NEXT: Name: foo
# NO-GC-NEXT: - Index: 4
# NO-GC-NEXT: Name: _start
# NO-GC-NEXT: - Index: 5
# NO-GC-NEXT: Name: use_undef_global
# NO-GC-NEXT: GlobalNames:
# NO-GC-NEXT: - Index: 0
# NO-GC-NEXT: Name: unused_undef_global
# NO-GC-NEXT: - Index: 1
# NO-GC-NEXT: Name: used_undef_global
# NO-GC-NEXT: - Index: 2
# NO-GC-NEXT: Name: __stack_pointer
# NO-GC-NEXT: ...