mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
[WebAssembly] Add reference types target feature
Summary: This adds the reference types target feature. This does not enable any more functionality in LLVM/clang for now, but this is necessary to embed the info in the target features section, which is used by Binaryen and Emscripten. It turned out that after D69832 `-fwasm-exceptions` crashed because we didn't have the reference types target feature. Reviewers: tlively Subscribers: dschuff, sbc100, jgravelle-google, hiraditya, sunfish, cfe-commits, llvm-commits Tags: #clang, #llvm Differential Revision: https://reviews.llvm.org/D73320
This commit is contained in:
parent
5d62de47d5
commit
ba6f3e7cdb
@ -66,6 +66,10 @@ def FeatureMutableGlobals :
|
||||
SubtargetFeature<"mutable-globals", "HasMutableGlobals", "true",
|
||||
"Enable mutable globals">;
|
||||
|
||||
def FeatureReferenceTypes :
|
||||
SubtargetFeature<"reference-types", "HasReferenceTypes", "true",
|
||||
"Enable reference types">;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Architectures.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -62,6 +62,10 @@ def HasBulkMemory :
|
||||
Predicate<"Subtarget->hasBulkMemory()">,
|
||||
AssemblerPredicate<"FeatureBulkMemory", "bulk-memory">;
|
||||
|
||||
def HasReferenceTypes :
|
||||
Predicate<"Subtarget->hasReferenceTypes()">,
|
||||
AssemblerPredicate<"FeatureReferenceTypes", "reference-types">;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// WebAssembly-specific DAG Node Types.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -47,6 +47,7 @@ class WebAssemblySubtarget final : public WebAssemblyGenSubtargetInfo {
|
||||
bool HasMultivalue = false;
|
||||
bool HasMutableGlobals = false;
|
||||
bool HasTailCall = false;
|
||||
bool HasReferenceTypes = false;
|
||||
|
||||
/// String name of used CPU.
|
||||
std::string CPUString;
|
||||
@ -104,6 +105,7 @@ public:
|
||||
bool hasMultivalue() const { return HasMultivalue; }
|
||||
bool hasMutableGlobals() const { return HasMutableGlobals; }
|
||||
bool hasTailCall() const { return HasTailCall; }
|
||||
bool hasReferenceTypes() const { return HasReferenceTypes; }
|
||||
|
||||
/// Parses features string setting specified subtarget options. Definition of
|
||||
/// function is auto generated by tblgen.
|
||||
|
14
test/CodeGen/WebAssembly/reference-types.ll
Normal file
14
test/CodeGen/WebAssembly/reference-types.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; RUN: llc < %s -mattr=+reference-types | FileCheck %s
|
||||
|
||||
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
||||
target triple = "wasm32-unknown-unknown"
|
||||
|
||||
; CHECK-LABEL: reference-types
|
||||
define void @reference-types() {
|
||||
ret void
|
||||
}
|
||||
|
||||
; CHECK: .int8 1
|
||||
; CHECK-NEXT: .int8 43
|
||||
; CHECK-NEXT: .int8 15
|
||||
; CHECK-NEXT: .ascii "reference-types"
|
@ -23,8 +23,13 @@ define void @fn_nontrapping_fptoint(i32* %p1, float %f2) #1 {
|
||||
ret void
|
||||
}
|
||||
|
||||
define void @fn_reference_types() #2 {
|
||||
ret void
|
||||
}
|
||||
|
||||
attributes #0 = { "target-features"="+atomics" }
|
||||
attributes #1 = { "target-features"="+nontrapping-fptoint" }
|
||||
attributes #2 = { "target-features"="+reference-types" }
|
||||
|
||||
; CHECK-LABEL: fn_atomics:
|
||||
|
||||
@ -51,29 +56,36 @@ attributes #1 = { "target-features"="+nontrapping-fptoint" }
|
||||
|
||||
; CHECK-LABEL: .custom_section.target_features,"",@
|
||||
|
||||
; +atomics, +nontrapping-fptoint
|
||||
; ATTRS-NEXT: .int8 2
|
||||
; +atomics, +nontrapping-fptoint, +reference-types
|
||||
; ATTRS-NEXT: .int8 3
|
||||
; ATTRS-NEXT: .int8 43
|
||||
; ATTRS-NEXT: .int8 7
|
||||
; ATTRS-NEXT: .ascii "atomics"
|
||||
; ATTRS-NEXT: .int8 43
|
||||
; ATTRS-NEXT: .int8 19
|
||||
; ATTRS-NEXT: .ascii "nontrapping-fptoint"
|
||||
; ATTRS-NEXT: .int8 43
|
||||
; ATTRS-NEXT: .int8 15
|
||||
; ATTRS-NEXT: .ascii "reference-types"
|
||||
|
||||
; +atomics, +simd128
|
||||
; SIMD128-NEXT: .int8 3
|
||||
; +atomics, +nontrapping-fptoint, +reference-types, +simd128
|
||||
; SIMD128-NEXT: .int8 4
|
||||
; SIMD128-NEXT: .int8 43
|
||||
; SIMD128-NEXT: .int8 7
|
||||
; SIMD128-NEXT: .ascii "atomics"
|
||||
; SIMD128-NEXT: .int8 43
|
||||
; SIMD128-NEXT: .int8 19
|
||||
; SIMD128-NEXT: .ascii "nontrapping-fptoint"
|
||||
; SIMD128-NEXT: .ascii "nontrapping-fptoint"
|
||||
; SIMD128-NEXT: .int8 43
|
||||
; SIMD128-NEXT: .int8 15
|
||||
; SIMD128-NEXT: .ascii "reference-types"
|
||||
; SIMD128-NEXT: .int8 43
|
||||
; SIMD128-NEXT: .int8 7
|
||||
; SIMD128-NEXT: .ascii "simd128"
|
||||
|
||||
; +atomics, +nontrapping-fptoint, +sign-ext, +simd128
|
||||
; BLEEDING-EDGE-NEXT: .int8 5
|
||||
; +atomics, +mutable-globals, +nontrapping-fptoint, +reference-types, +sign-ext,
|
||||
; +simd128
|
||||
; BLEEDING-EDGE-NEXT: .int8 6
|
||||
; BLEEDING-EDGE-NEXT: .int8 43
|
||||
; BLEEDING-EDGE-NEXT: .int8 7
|
||||
; BLEEDING-EDGE-NEXT: .ascii "atomics"
|
||||
@ -84,6 +96,9 @@ attributes #1 = { "target-features"="+nontrapping-fptoint" }
|
||||
; BLEEDING-EDGE-NEXT: .int8 19
|
||||
; BLEEDING-EDGE-NEXT: .ascii "nontrapping-fptoint"
|
||||
; BLEEDING-EDGE-NEXT: .int8 43
|
||||
; BLEEDING-EDGE-NEXT: .int8 15
|
||||
; BLEEDING-EDGE-NEXT: .ascii "reference-types"
|
||||
; BLEEDING-EDGE-NEXT: .int8 43
|
||||
; BLEEDING-EDGE-NEXT: .int8 8
|
||||
; BLEEDING-EDGE-NEXT: .ascii "sign-ext"
|
||||
; BLEEDING-EDGE-NEXT: .int8 43
|
||||
|
Loading…
Reference in New Issue
Block a user