Files
clang-p2996/clang/test/CodeGenHLSL/cbuffer_align.hlsl
Justin Bogner d35bf17e8a [HLSL] Add a warning for implicit bindings (#135909)
Implicit bindings will cause very confusing crashes in the backend at
present, so this is intended at least partially as a stop gap until we
get them implemented (see #110722).

However, I do think that this is useful in the longer term as well as an
off-by-default warning, as it is quite easy to miss a binding or two
when using explicit bindings and the results of that can be surprisingly
hard to debug. I've filed #135907 to track turning this into an
off-by-default warning or removing it eventually as we see fit.
2025-04-16 15:45:18 -07:00

120 lines
2.1 KiB
HLSL

// RUN: %clang_cc1 -Wno-hlsl-implicit-binding -std=hlsl2021 -finclude-default-header -x hlsl -triple dxil-pc-shadermodel6.3-library %s -fnative-half-type -fsyntax-only -verify -verify-ignore-unexpected=warning
struct S0 {
half a;
half b;
half c;
half d;
half e;
half f;
half g;
half h;
};
cbuffer CB0Pass {
S0 s0p : packoffset(c0.x);
float f0p : packoffset(c1.x);
}
cbuffer CB0Fail {
S0 s0f : packoffset(c0.x);
float f0f : packoffset(c0.w);
// expected-error@-1 {{packoffset overlap between 'f0f', 's0f'}}
}
struct S1 {
float a;
double b;
float c;
};
cbuffer CB1Pass {
S1 s1p : packoffset(c0.x);
float f1p : packoffset(c1.y);
}
cbuffer CB1Fail {
S1 s1f : packoffset(c0.x);
float f1f : packoffset(c1.x);
// expected-error@-1 {{packoffset overlap between 'f1f', 's1f'}}
}
struct S2 {
float3 a;
float2 b;
};
cbuffer CB2Pass {
S2 s2p : packoffset(c0.x);
float f2p : packoffset(c1.z);
}
cbuffer CB2Fail {
S2 s2f : packoffset(c0.x);
float f2f : packoffset(c1.y);
// expected-error@-1 {{packoffset overlap between 'f2f', 's2f'}}
}
struct S3 {
float3 a;
float b;
};
cbuffer CB3Pass {
S3 s3p : packoffset(c0.x);
float f3p : packoffset(c1.x);
}
cbuffer CB3Fail {
S3 s3f : packoffset(c0.x);
float f3f : packoffset(c0.w);
// expected-error@-1 {{packoffset overlap between 'f3f', 's3f'}}
}
struct S4 {
float2 a;
float2 b;
};
cbuffer CB4Pass {
S4 s4p : packoffset(c0.x);
float f4p : packoffset(c1.x);
}
cbuffer CB4Fail {
S4 s4f : packoffset(c0.x);
float f4f : packoffset(c0.w);
// expected-error@-1 {{packoffset overlap between 'f4f', 's4f'}}
}
struct S5 {
float a[3];
};
cbuffer CB5Pass {
S5 s5p : packoffset(c0.x);
float f5p : packoffset(c2.y);
}
cbuffer CB5Fail {
S5 s5f : packoffset(c0.x);
float f5f : packoffset(c2.x);
// expected-error@-1 {{packoffset overlap between 'f5f', 's5f'}}
}
struct S6 {
float a;
float2 b;
};
cbuffer CB6Pass {
S6 s6p : packoffset(c0.x);
float f6p : packoffset(c0.w);
}
cbuffer CB6Fail {
S6 s6f : packoffset(c0.x);
float f6f : packoffset(c0.y);
// expected-error@-1 {{packoffset overlap between 'f6f', 's6f'}}
}