[RISCV] Fix the code alignment for GroupFloatVectors. NFC
[llvm-project.git] / mlir / test / Conversion / SPIRVToLLVM / spirv-types-to-llvm.mlir
blob1d573f3f25052157644affb955a3ad292f8d2d25
1 // RUN: mlir-opt -split-input-file -convert-spirv-to-llvm -verify-diagnostics %s | FileCheck %s
3 //===----------------------------------------------------------------------===//
4 // Array type
5 //===----------------------------------------------------------------------===//
7 // CHECK-LABEL: @array(!llvm.array<16 x f32>, !llvm.array<32 x vector<4xf32>>)
8 spv.func @array(!spv.array<16 x f32>, !spv.array< 32 x vector<4xf32> >) "None"
10 // CHECK-LABEL: @array_with_natural_stride(!llvm.array<16 x f32>)
11 spv.func @array_with_natural_stride(!spv.array<16 x f32, stride=4>) "None"
13 //===----------------------------------------------------------------------===//
14 // Pointer type
15 //===----------------------------------------------------------------------===//
17 // CHECK-LABEL: @pointer_scalar(!llvm.ptr<i1>, !llvm.ptr<f32>)
18 spv.func @pointer_scalar(!spv.ptr<i1, Uniform>, !spv.ptr<f32, Private>) "None"
20 // CHECK-LABEL: @pointer_vector(!llvm.ptr<vector<4xi32>>)
21 spv.func @pointer_vector(!spv.ptr<vector<4xi32>, Function>) "None"
23 //===----------------------------------------------------------------------===//
24 // Runtime array type
25 //===----------------------------------------------------------------------===//
27 // CHECK-LABEL: @runtime_array_vector(!llvm.array<0 x vector<4xf32>>)
28 spv.func @runtime_array_vector(!spv.rtarray< vector<4xf32> >) "None"
30 // CHECK-LABEL: @runtime_array_scalar(!llvm.array<0 x f32>)
31 spv.func @runtime_array_scalar(!spv.rtarray<f32>) "None"
33 //===----------------------------------------------------------------------===//
34 // Struct type
35 //===----------------------------------------------------------------------===//
37 // CHECK-LABEL: @struct(!llvm.struct<packed (f64)>)
38 spv.func @struct(!spv.struct<(f64)>) "None"
40 // CHECK-LABEL: @struct_nested(!llvm.struct<packed (i32, struct<packed (i64, i32)>)>)
41 spv.func @struct_nested(!spv.struct<(i32, !spv.struct<(i64, i32)>)>) "None"
43 // CHECK-LABEL: @struct_with_natural_offset(!llvm.struct<(i8, i32)>)
44 spv.func @struct_with_natural_offset(!spv.struct<(i8[0], i32[4])>) "None"