
Many tests had this flag removed because of the G_BITCAST emission issue. Now that the PR is merged, we can re-enable this additional check. 2 tests (basic_int_types) just have the TODO removed because they are not useful for SPIR-V as-is: SPIR-V requires reg2mem/mem2reg to run, which removes all the body. Integers are used in other spirv tests, and seems like testing for spirv32/64 and relying on others for the logical target coverage should be fine. Signed-off-by: Nathan Gauër <brioche@google.com>
69 lines
2.6 KiB
LLVM
69 lines
2.6 KiB
LLVM
; RUN: llc -O0 -verify-machineinstrs -mtriple=spirv-vulkan-unknown %s -o - | FileCheck %s
|
|
; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-vulkan-unknown %s -o - -filetype=obj | spirv-val %}
|
|
|
|
; This file generated from the following command:
|
|
; clang -cc1 -triple spirv-vulkan-compute -x hlsl -emit-llvm -finclude-default-header -o - - <<EOF
|
|
; [numthreads(1, 1, 1)]
|
|
; void main() {
|
|
; int idx = WaveGetLaneIndex();
|
|
; }
|
|
; EOF
|
|
|
|
; CHECK-DAG: OpCapability Shader
|
|
; CHECK-DAG: OpCapability GroupNonUniform
|
|
; CHECK-DAG: OpDecorate %[[#var:]] BuiltIn SubgroupLocalInvocationId
|
|
; CHECK-DAG: %[[#int:]] = OpTypeInt 32 0
|
|
; CHECK-DAG: %[[#ptri:]] = OpTypePointer Input %[[#int]]
|
|
; CHECK-DAG: %[[#ptrf:]] = OpTypePointer Function %[[#int]]
|
|
; CHECK-DAG: %[[#var]] = OpVariable %[[#ptri]] Input
|
|
|
|
; CHECK-NOT: OpDecorate %[[#var]] LinkageAttributes
|
|
|
|
|
|
; ModuleID = '-'
|
|
source_filename = "-"
|
|
target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024"
|
|
target triple = "spirv-unknown-vulkan-compute"
|
|
|
|
; Function Attrs: convergent noinline norecurse nounwind optnone
|
|
define internal spir_func void @main() #0 {
|
|
entry:
|
|
%0 = call token @llvm.experimental.convergence.entry()
|
|
%idx = alloca i32, align 4
|
|
; CHECK: %[[#idx:]] = OpVariable %[[#ptrf]] Function
|
|
|
|
%1 = call i32 @__hlsl_wave_get_lane_index() [ "convergencectrl"(token %0) ]
|
|
; CHECK: %[[#tmp:]] = OpLoad %[[#int]] %[[#var]]
|
|
|
|
store i32 %1, ptr %idx, align 4
|
|
; CHECK: OpStore %[[#idx]] %[[#tmp]]
|
|
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: norecurse
|
|
define void @main.1() #1 {
|
|
entry:
|
|
call void @main()
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: convergent
|
|
declare i32 @__hlsl_wave_get_lane_index() #2
|
|
|
|
; Function Attrs: convergent nocallback nofree nosync nounwind willreturn memory(none)
|
|
declare token @llvm.experimental.convergence.entry() #3
|
|
|
|
attributes #0 = { convergent noinline norecurse nounwind optnone "no-trapping-math"="true" "stack-protector-buffer-size"="8" }
|
|
attributes #1 = { norecurse "hlsl.numthreads"="1,1,1" "hlsl.shader"="compute" "no-trapping-math"="true" "stack-protector-buffer-size"="8" }
|
|
attributes #2 = { convergent }
|
|
attributes #3 = { convergent nocallback nofree nosync nounwind willreturn memory(none) }
|
|
|
|
!llvm.module.flags = !{!0, !1}
|
|
!llvm.ident = !{!2}
|
|
|
|
!0 = !{i32 1, !"wchar_size", i32 4}
|
|
!1 = !{i32 4, !"dx.disable_optimizations", i32 1}
|
|
!2 = !{!"clang version 19.0.0git (/usr/local/google/home/nathangauer/projects/llvm-project/clang bc6fd04b73a195981ee77823cf1382d04ab96c44)"}
|
|
|