[llvm] [SPIR-V] Add support for inline SPIR-V types (PR #125316)

Nathan Gauër via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 18 05:07:32 PST 2025


================
@@ -0,0 +1,43 @@
+; RUN: llc -verify-machineinstrs -O0 -mtriple=spirv-unknown-unknown %s -o - | FileCheck %s
+; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-unknown-unknown %s -o - -filetype=obj | spirv-val %}
+; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-unknown-unknown %s -o - | spirv-as - -o - | spirv-val %}
+
+; CHECK: [[uint32_t:%[0-9]+]] = OpTypeInt 32 0
+
+; CHECK: [[image_t:%[0-9]+]] = OpTypeImage %3 2D 2 0 0 1 Unknown
+%type_2d_image = type target("spirv.Image", float, 1, 2, 0, 0, 1, 0)
+
+%literal_true = type target("spirv.Literal", 1)
+%literal_32 = type target("spirv.Literal", 32)
+
+; CHECK: [[uint32_4:%[0-9]+]] = OpConstant [[uint32_t]] 4
+%integral_constant_4 = type target("spirv.IntegralConstant", i32, 4)
+
+; CHECK: OpUnknown(28, 4) [[array_t:%[0-9]+]] [[image_t]] [[uint32_4]]
+%ArrayTex2D = type target("spirv.Type", %type_2d_image, %integral_constant_4, 28, 0, 0)
+
+; CHECK: [[getTexArray_t:%[0-9]+]] = OpTypeFunction [[array_t]]
+
+; CHECK: OpUnknown(21, 4) [[int_t:%[0-9]+]] 32 1
+%int_t = type target("spirv.Type", %literal_32, %literal_true, 21, 0, 0)
----------------
Keenuts wrote:

Do you think it would be useful to add a more complexe type, like CooperativeMatrix?

```llvm
%scope = type target("spirv.IntegralConstant", i32, 2) ; Workgroup
%cols = type target("spirv.IntegralConstant", i32, 4)
%rows = type target("spirv.IntegralConstant", i32, 4)
%use = type target("spirv.IntegralConstant", i32, 0) ; MatrixAKHR

%coop = type target("spirv.Type", float, %scope, %rows, %cols, %use, 4456, 0, 0)
```

https://github.com/llvm/llvm-project/pull/125316


More information about the llvm-commits mailing list