forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPIR-V] Ensure no uses of intrinsic global variables after module tr…
…anslation (llvm#122729) Ensure that the backend satisfies the requirement of the verifier that disallows uses of intrinsic global variables. This PR fixes llvm#110495
- Loading branch information
1 parent
bf8f505
commit 46c44e3
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
; Ensure that the backend satisfies the requirement of the verifier | ||
; that disallows uses of intrinsic global variables. | ||
|
||
; int *ptr_0 = nullptr; | ||
; void *ptr_1 = ptr_0; | ||
; clang -S -emit-llvm --target=spir example.cpp | ||
|
||
; Test passes if use of "-verify-machineinstrs" doesn't lead to crash. | ||
; RUN: llc -verify-machineinstrs -O0 -mtriple=spirv64-unknown-unknown %s -o - | FileCheck %s | ||
; CHECK: OpFunction | ||
|
||
@ptr_0 = dso_local global ptr null, align 4 | ||
@ptr_1 = dso_local global ptr null, align 4 | ||
@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_example.cpp, ptr null }] | ||
|
||
define internal spir_func void @__cxx_global_var_init() { | ||
entry: | ||
%0 = load ptr, ptr @ptr_0, align 4 | ||
store ptr %0, ptr @ptr_1, align 4 | ||
ret void | ||
} | ||
|
||
define internal spir_func void @_GLOBAL__sub_I_example.cpp() { | ||
entry: | ||
call spir_func void @__cxx_global_var_init() | ||
ret void | ||
} |