-
Notifications
You must be signed in to change notification settings - Fork 15.1k
[SPIRV] Porting tests to transcoding directory from translator #151661
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
llvm/test/CodeGen/SPIRV/transcoding/OpVariable_Initializer.ll
This file contains hidden or 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,11 @@ | ||
| ; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s --check-prefix=CHECK-SPIRV | ||
| ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv32-unknown-unknown %s -o - -filetype=obj | spirv-val %} | ||
|
|
||
| ; CHECK-SPIRV: [[#PtrT:]] = OpTypePointer Workgroup %[[#]] | ||
| ; CHECK-SPIRV: %[[#]] = OpVariable %[[#PtrT]] Workgroup | ||
|
|
||
| @test_atomic_fn.L = internal addrspace(3) global [64 x i32] zeroinitializer, align 4 | ||
|
|
||
| define spir_kernel void @test_atomic_fn() { | ||
| ret void | ||
| } | ||
This file contains hidden or 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,16 @@ | ||
| ; RUN: llc -verify-machineinstrs -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s | ||
| ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv32-unknown-unknown %s -o - -filetype=obj | spirv-val %} | ||
|
|
||
| ; RUN: llc -verify-machineinstrs -O0 -mtriple=spirv64-unknown-unknown %s -o - | FileCheck %s | ||
| ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv64-unknown-unknown %s -o - -filetype=obj | spirv-val %} | ||
|
|
||
| ; CHECK: OpDecorate %[[#Id:]] BuiltIn GlobalInvocationId | ||
| ; CHECK: %[[#Id]] = OpVariable %[[#]] CrossWorkgroup | ||
|
|
||
| @__spirv_BuiltInGlobalInvocationId = external dso_local local_unnamed_addr addrspace(1) constant <3 x i64>, align 32 | ||
|
|
||
| define spir_kernel void @f() { | ||
| entry: | ||
| %0 = load i64, ptr addrspace(1) @__spirv_BuiltInGlobalInvocationId, align 32 | ||
| ret void | ||
| } |
30 changes: 30 additions & 0 deletions
30
llvm/test/CodeGen/SPIRV/transcoding/decoration-forward-decl.ll
This file contains hidden or 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,30 @@ | ||
| ; RUN: llc -O0 -mtriple=spirv64-unknown-unknown %s -o - | FileCheck %s | ||
| ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv64-unknown-unknown %s -o - -filetype=obj | spirv-val %} | ||
|
|
||
| ; Check saturation conversion is translated when there is forward declaration | ||
| ; of SPIRV entry. | ||
|
|
||
| ; CHECK: OpDecorate %[[#SAT:]] SaturatedConversion | ||
| ; CHECK: %[[#SAT]] = OpConvertFToU %[[#]] %[[#]] | ||
|
|
||
| declare spir_func zeroext i8 @_Z30__spirv_ConvertFToU_Ruchar_satf(float) | ||
|
|
||
| define spir_func void @forward(float %val, i8 %initval, ptr addrspace(1) %dst) { | ||
| entry: | ||
| br label %for.cond | ||
|
|
||
| for.cond: ; preds = %for.body, %entry | ||
| %new_val.0 = phi i8 [ %initval, %entry ], [ %call1, %for.body ] | ||
| %i.0 = phi i32 [ 0, %entry ], [ %inc, %for.body ] | ||
| %cmp = icmp ult i32 %i.0, 1 | ||
| br i1 %cmp, label %for.body, label %for.end | ||
|
|
||
| for.body: ; preds = %for.cond | ||
| %call1 = call spir_func zeroext i8 @_Z30__spirv_ConvertFToU_Ruchar_satf(float noundef %val) | ||
| %inc = add i32 %i.0, 1 | ||
| br label %for.cond | ||
|
|
||
| for.end: ; preds = %for.cond | ||
| store i8 %new_val.0, ptr addrspace(1) %dst, align 1 | ||
| ret void | ||
| } |
This file contains hidden or 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,25 @@ | ||
| ; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s --check-prefix=CHECK-SPIRV | ||
| ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv32-unknown-unknown %s -o - -filetype=obj | spirv-val %} | ||
|
|
||
| ; CHECK-SPIRV: %[[#HALF:]] = OpTypeFloat 16 | ||
| ; CHECK-SPIRV: %[[#HALFPTR:]] = OpTypePointer Function %[[#HALF]] | ||
| ; CHECK-SPIRV: %[[#HALFV2:]] = OpTypeVector %[[#HALF]] 2 | ||
| ; CHECK-SPIRV: %[[#HALFV2PTR:]] = OpTypePointer Function %[[#HALFV2]] | ||
| ; CHECK-SPIRV: %[[#CONST:]] = OpConstant %[[#HALF]] 14788 | ||
| ; CHECK-SPIRV: %[[#ADDR:]] = OpVariable %[[#HALFPTR]] Function | ||
| ; CHECK-SPIRV: %[[#ADDR2:]] = OpVariable %[[#HALFV2PTR]] Function | ||
| ; CHECK-SPIRV: %[[#]] = OpExtInst %[[#HALF]] %[[#]] fract %[[#CONST]] %[[#ADDR]] | ||
| ; CHECK-SPIRV: %[[#]] = OpExtInst %[[#HALFV2]] %[[#]] fract %[[#]] %[[#ADDR2]] | ||
|
|
||
| define spir_kernel void @test() { | ||
| entry: | ||
| %addr = alloca half | ||
| %addr2 = alloca <2 x half> | ||
| %res = call spir_func noundef half @_Z17__spirv_ocl_fractDF16_PU3AS0DF16_(half noundef 0xH39C4, ptr noundef %addr) | ||
| %res2 = call spir_func noundef <2 x half> @_Z17__spirv_ocl_fractDv2_DF16_PU3AS0S_(<2 x half> noundef <half 0xH39C4, half 0xH0000>, ptr noundef %addr2) | ||
| ret void | ||
| } | ||
|
|
||
| declare spir_func noundef half @_Z17__spirv_ocl_fractDF16_PU3AS0DF16_(half noundef, ptr noundef) local_unnamed_addr | ||
|
|
||
| declare spir_func noundef <2 x half> @_Z17__spirv_ocl_fractDv2_DF16_PU3AS0S_(<2 x half> noundef, ptr noundef) local_unnamed_addr |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.