[PATCH] D64602: [WebAssembly] Assembler: recognize .init_array as data section.
Wouter van Oortmerssen via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 12 10:18:06 PDT 2019
aardappel updated this revision to Diff 209521.
aardappel added a comment.
Added test.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D64602/new/
https://reviews.llvm.org/D64602
Files:
lib/MC/MCParser/WasmAsmParser.cpp
test/MC/WebAssembly/basic-assembly.s
Index: test/MC/WebAssembly/basic-assembly.s
===================================================================
--- test/MC/WebAssembly/basic-assembly.s
+++ test/MC/WebAssembly/basic-assembly.s
@@ -101,6 +101,10 @@
.int32 2000000000
.size .L.str, 28
+ .section .init_array.42,"",@
+ .p2align 2
+ .int32 test0
+
.ident "clang version 9.0.0 (trunk 364502) (llvm/trunk 364571)"
.globaltype __stack_pointer, i32
@@ -190,8 +194,13 @@
# CHECK-NEXT: .L.str:
# CHECK-NEXT: .int8 72
# CHECK-NEXT: .asciz "ello, World!"
-# CHECK-NEXT: .int16 1234
-# CHECK-NEXT: .int64 5000000000
-# CHECK-NEXT: .int32 2000000000
+# CHECK-NEXT: .int16 1234
+# CHECK-NEXT: .int64 5000000000
+# CHECK-NEXT: .int32 2000000000
+# CHECK-NEXT: .size .L.str, 28
+
+# CHECK: .section .init_array.42,"",@
+# CHECK-NEXT: .p2align 2
+# CHECK-NEXT: .int32 test0
# CHECK: .globaltype __stack_pointer, i32
Index: lib/MC/MCParser/WasmAsmParser.cpp
===================================================================
--- lib/MC/MCParser/WasmAsmParser.cpp
+++ lib/MC/MCParser/WasmAsmParser.cpp
@@ -120,6 +120,9 @@
.StartsWith(".text", SectionKind::getText())
.StartsWith(".custom_section", SectionKind::getMetadata())
.StartsWith(".bss", SectionKind::getBSS())
+ // See use of .init_array in WasmObjectWriter and
+ // TargetLoweringObjectFileWasm
+ .StartsWith(".init_array", SectionKind::getData())
.Default(Optional<SectionKind>());
if (!Kind.hasValue())
return Parser->Error(Lexer->getLoc(), "unknown section kind: " + Name);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D64602.209521.patch
Type: text/x-patch
Size: 1841 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190712/749d104c/attachment.bin>
More information about the llvm-commits
mailing list