2020-11-18 13:52:45 +08:00
|
|
|
# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown -o %t.o %s
|
2021-07-24 07:57:37 +08:00
|
|
|
# RUN: wasm-ld -strip-all %t.o -o %t.wasm
|
2020-11-18 13:52:45 +08:00
|
|
|
# RUN: obj2yaml %t.wasm | FileCheck %s
|
|
|
|
|
|
|
|
# Test that undefined weak externals (global_var) and (foo) don't cause
|
|
|
|
# link failures and resolve to zero.
|
|
|
|
|
[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-06-08 03:10:47 +08:00
|
|
|
.functype foo () -> (i32)
|
|
|
|
|
2020-11-18 13:52:45 +08:00
|
|
|
.globl get_address_of_foo
|
|
|
|
get_address_of_foo:
|
|
|
|
.functype get_address_of_foo () -> (i32)
|
|
|
|
i32.const foo
|
|
|
|
end_function
|
|
|
|
|
|
|
|
.globl get_address_of_global_var
|
|
|
|
get_address_of_global_var:
|
|
|
|
.functype get_address_of_global_var () -> (i32)
|
|
|
|
i32.const global_var
|
|
|
|
end_function
|
|
|
|
|
|
|
|
.globl _start
|
|
|
|
_start:
|
|
|
|
.functype _start () -> ()
|
|
|
|
call get_address_of_global_var
|
|
|
|
drop
|
|
|
|
call get_address_of_foo
|
|
|
|
drop
|
|
|
|
call foo
|
|
|
|
drop
|
|
|
|
end_function
|
|
|
|
|
|
|
|
.weak foo
|
|
|
|
.weak global_var
|
|
|
|
|
|
|
|
|
|
|
|
# CHECK: --- !WASM
|
|
|
|
# CHECK-NEXT: FileHeader:
|
|
|
|
# CHECK-NEXT: Version: 0x1
|
|
|
|
# CHECK-NEXT: Sections:
|
|
|
|
# CHECK-NEXT: - Type: TYPE
|
|
|
|
# CHECK-NEXT: Signatures:
|
|
|
|
# CHECK-NEXT: - Index: 0
|
|
|
|
# CHECK-NEXT: ParamTypes: []
|
|
|
|
# CHECK-NEXT: ReturnTypes:
|
|
|
|
# CHECK-NEXT: - I32
|
|
|
|
# CHECK-NEXT: - Index: 1
|
|
|
|
# CHECK-NEXT: ParamTypes: []
|
|
|
|
# CHECK-NEXT: ReturnTypes: []
|
|
|
|
# CHECK-NEXT: - Type: FUNCTION
|
|
|
|
# CHECK-NEXT: FunctionTypes: [ 0, 0, 0, 1 ]
|
|
|
|
# CHECK-NEXT: - Type: TABLE
|
|
|
|
# CHECK-NEXT: Tables:
|
|
|
|
# CHECK-NEXT: - Index: 0
|
|
|
|
# CHECK-NEXT: ElemType: FUNCREF
|
|
|
|
# CHECK-NEXT: Limits:
|
|
|
|
# CHECK-NEXT: Flags: [ HAS_MAX ]
|
2021-03-23 21:46:32 +08:00
|
|
|
# CHECK-NEXT: Minimum: 0x1
|
2020-11-18 13:52:45 +08:00
|
|
|
# CHECK-NEXT: Maximum: 0x1
|
|
|
|
# CHECK-NEXT: - Type: MEMORY
|
|
|
|
# CHECK-NEXT: Memories:
|
2021-03-23 21:46:32 +08:00
|
|
|
# CHECK-NEXT: - Minimum: 0x2
|
2020-11-18 13:52:45 +08:00
|
|
|
# CHECK-NEXT: - Type: GLOBAL
|
|
|
|
# CHECK-NEXT: Globals:
|
|
|
|
# CHECK-NEXT: - Index: 0
|
|
|
|
# CHECK-NEXT: Type: I32
|
|
|
|
# CHECK-NEXT: Mutable: true
|
|
|
|
# CHECK-NEXT: InitExpr:
|
|
|
|
# CHECK-NEXT: Opcode: I32_CONST
|
|
|
|
# CHECK-NEXT: Value: 66560
|
|
|
|
# CHECK-NEXT: - Type: EXPORT
|
|
|
|
# CHECK-NEXT: Exports:
|
|
|
|
# CHECK-NEXT: - Name: memory
|
|
|
|
# CHECK-NEXT: Kind: MEMORY
|
|
|
|
# CHECK-NEXT: Index: 0
|
|
|
|
# CHECK-NEXT: - Name: _start
|
|
|
|
# CHECK-NEXT: Kind: FUNCTION
|
|
|
|
# CHECK-NEXT: Index: 3
|
|
|
|
# CHECK-NEXT: - Type: CODE
|
|
|
|
# CHECK-NEXT: Functions:
|
|
|
|
# CHECK-NEXT: - Index: 0
|
|
|
|
# CHECK-NEXT: Locals:
|
|
|
|
# CHECK-NEXT: Body: 000B
|
|
|
|
# CHECK-NEXT: - Index: 1
|
|
|
|
# CHECK-NEXT: Locals:
|
|
|
|
# CHECK-NEXT: Body: 4180808080000B
|
|
|
|
# CHECK-NEXT: - Index: 2
|
|
|
|
# CHECK-NEXT: Locals:
|
|
|
|
# CHECK-NEXT: Body: 4180808080000B
|
|
|
|
# CHECK-NEXT: - Index: 3
|
|
|
|
# CHECK-NEXT: Locals:
|
|
|
|
# CHECK-NEXT: Body: 1082808080001A1081808080001A1080808080001A0B
|
|
|
|
# CHECK-NEXT: ...
|