mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
8d3d43ab16
Support the IS_SHARED bit in the memory limits flag word. The compiler does not create object files with memory definitions, but the field is used by the linker. Differential Revision: https://reviews.llvm.org/D54131 llvm-svn: 346246
37 lines
1019 B
YAML
37 lines
1019 B
YAML
# RUN: yaml2obj %s | obj2yaml | FileCheck %s
|
|
--- !WASM
|
|
FileHeader:
|
|
Version: 0x00000001
|
|
Sections:
|
|
- Type: TYPE
|
|
Signatures:
|
|
- Index: 0
|
|
ReturnType: I32
|
|
ParamTypes:
|
|
- I32
|
|
- Type: IMPORT
|
|
Imports:
|
|
- Module: foo
|
|
Field: imported_memory
|
|
Kind: MEMORY
|
|
Memory:
|
|
Flags: [ HAS_MAX, IS_SHARED ]
|
|
Initial: 0x00000010
|
|
Maximum: 0x00000011
|
|
|
|
...
|
|
# CHECK: --- !WASM
|
|
# CHECK: FileHeader:
|
|
# CHECK: Version: 0x00000001
|
|
# CHECK: Sections:
|
|
# CHECK: - Type: IMPORT
|
|
# CHECK: Imports:
|
|
# CHECK: - Module: foo
|
|
# CHECK: Field: imported_memory
|
|
# CHECK: Kind: MEMORY
|
|
# CHECK: Memory:
|
|
# CHECK: Flags: [ HAS_MAX, IS_SHARED ]
|
|
# CHECK: Initial: 0x00000010
|
|
# CHECK: Maximum: 0x00000011
|
|
# CHECK: ...
|