Files
archived-llvm/test/CodeGen/WebAssembly/custom-sections.ll
Sam Clegg 13c09234d6 [WebAssembly] Allow for the creation of user-defined custom sections
This patch adds a way for users to create their own custom sections to
be added to wasm files. At the LLVM IR layer, they are defined through
the "wasm.custom_sections" named metadata. The expected use case for
this is bindings generators such as wasm-bindgen.

Patch by Dan Gohman

Differential Revision: https://reviews.llvm.org/D45297

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@329315 91177308-0d34-0410-b5e6-96231b3b80d8
2018-04-05 17:01:39 +00:00

21 lines
561 B
LLVM

; RUN: llc < %s -asm-verbose=false | FileCheck %s
; Test the mechanism for defining user custom sections.
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
target triple = "wasm32-unknown-unknown-wasm"
!0 = !{ !"red", !"foo" }
!1 = !{ !"green", !"bar" }
!2 = !{ !"green", !"qux" }
!wasm.custom_sections = !{ !0, !1, !2 }
; CHECK: .section .custom_section.red,"",@
; CHECK-NEXT: .ascii "foo"
; CHECK: .section .custom_section.green,"",@
; CHECK-NEXT: .ascii "bar"
; CHECK: .section .custom_section.green,"",@
; CHECK-NEXT: .ascii "qux"