xref: /llvm-project/clang/test/SemaHLSL/Language/OutputParameters.hlsl (revision 89fb8490a99e612f7a574e8678b21a90f689f5b4)
1// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.0-compute -finclude-default-header -verify -Wdouble-promotion -Wconversion %s
2
3void OutVecFn(out float3) {}
4void InOutVecFn(inout float3) {}
5
6// Case 1: Calling out and inout parameters with types that cannot be
7// back-converted. In HLSL 2021 and earlier this only occurs when passing scalar
8// arguments to vector parameters because scalar->vector conversion is implicit,
9// but vector->scalar is not.
10void case1() {
11  float f;
12  int i;
13  OutVecFn(f); // expected-error{{illegal scalar extension cast on argument f to out paramemter}}
14  InOutVecFn(f); // expected-error{{illegal scalar extension cast on argument f to inout paramemter}}
15
16  OutVecFn(i); // expected-error{{illegal scalar extension cast on argument i to out paramemter}}
17  InOutVecFn(i); // expected-error{{illegal scalar extension cast on argument i to inout paramemter}}
18}
19
20// Case 2: Conversion warnings on argument initialization. Clang generates
21// implicit conversion warnings only on the writeback conversion for `out`
22// parameters since the parameter is not initialized from the argument. Clang
23// generates implicit conversion warnings on both the parameter initialization
24// and the writeback for `inout` parameters since the parameter is both copied
25// in and out of the function.
26
27void OutFloat(out float) {}
28void InOutFloat(inout float) {}
29
30void case2() {
31  double f;
32  OutFloat(f); // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'double'}}
33  InOutFloat(f); // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'double'}} expected-warning{{implicit conversion loses floating-point precision: 'double' to 'float'}}
34}
35