1// RUN: mlir-translate -test-spirv-roundtrip %s | FileCheck %s
2
3spv.module Logical GLSL450 requires #spv.vce<v1.0, [Shader], []> {
4  spv.globalVariable @var1 : !spv.ptr<!spv.array<4xf32>, Input>
5  spv.func @fmain() -> i32 "None" {
6    %0 = spv.constant 16 : i32
7    %1 = spv.mlir.addressof @var1 : !spv.ptr<!spv.array<4xf32>, Input>
8    // CHECK: {{%.*}} = spv.FunctionCall @f_0({{%.*}}) : (i32) -> i32
9    %3 = spv.FunctionCall @f_0(%0) : (i32) -> i32
10    // CHECK: spv.FunctionCall @f_1({{%.*}}, {{%.*}}) : (i32, !spv.ptr<!spv.array<4 x f32>, Input>) -> ()
11    spv.FunctionCall @f_1(%3, %1) : (i32, !spv.ptr<!spv.array<4xf32>, Input>) ->  ()
12    // CHECK: {{%.*}} =  spv.FunctionCall @f_2({{%.*}}) : (!spv.ptr<!spv.array<4 x f32>, Input>) -> !spv.ptr<!spv.array<4 x f32>, Input>
13    %4 = spv.FunctionCall @f_2(%1) : (!spv.ptr<!spv.array<4xf32>, Input>) -> !spv.ptr<!spv.array<4xf32>, Input>
14    spv.ReturnValue %3 : i32
15  }
16  spv.func @f_0(%arg0 : i32) -> i32 "None" {
17    spv.ReturnValue %arg0 : i32
18  }
19  spv.func @f_1(%arg0 : i32, %arg1 : !spv.ptr<!spv.array<4xf32>, Input>) -> () "None" {
20    spv.Return
21  }
22  spv.func @f_2(%arg0 : !spv.ptr<!spv.array<4xf32>, Input>) -> !spv.ptr<!spv.array<4xf32>, Input> "None" {
23    spv.ReturnValue %arg0 : !spv.ptr<!spv.array<4xf32>, Input>
24  }
25
26  spv.func @f_loop_with_function_call(%count : i32) -> () "None" {
27    %zero = spv.constant 0: i32
28    %var = spv.Variable init(%zero) : !spv.ptr<i32, Function>
29    spv.loop {
30      spv.Branch ^header
31    ^header:
32      %val0 = spv.Load "Function" %var : i32
33      %cmp = spv.SLessThan %val0, %count : i32
34      spv.BranchConditional %cmp, ^body, ^merge
35    ^body:
36      spv.Branch ^continue
37    ^continue:
38      // CHECK: spv.FunctionCall @f_inc({{%.*}}) : (!spv.ptr<i32, Function>) -> ()
39      spv.FunctionCall @f_inc(%var) : (!spv.ptr<i32, Function>) -> ()
40      spv.Branch ^header
41    ^merge:
42      spv.mlir.merge
43    }
44    spv.Return
45  }
46  spv.func @f_inc(%arg0 : !spv.ptr<i32, Function>) -> () "None" {
47      %one = spv.constant 1 : i32
48      %0 = spv.Load "Function" %arg0 : i32
49      %1 = spv.IAdd %0, %one : i32
50      spv.Store "Function" %arg0, %1 : i32
51      spv.Return
52  }
53}
54