SPIRV-Cross/reference/shaders-msl/comp/int64.invalid.msl22.comp

107 lines
2.2 KiB
Plaintext
Raw Normal View History

2019-09-17 19:11:19 +00:00
#pragma clang diagnostic ignored "-Wmissing-prototypes"
#pragma clang diagnostic ignored "-Wmissing-braces"
2019-06-11 08:45:22 +00:00
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
2019-09-17 19:11:19 +00:00
template<typename T, size_t Num>
struct spvUnsafeArray
{
T elements[Num ? Num : 1];
thread T& operator [] (size_t pos) thread
{
return elements[pos];
}
constexpr const thread T& operator [] (size_t pos) const thread
{
return elements[pos];
}
device T& operator [] (size_t pos) device
{
return elements[pos];
}
constexpr const device T& operator [] (size_t pos) const device
{
return elements[pos];
}
constexpr const constant T& operator [] (size_t pos) const constant
{
return elements[pos];
}
threadgroup T& operator [] (size_t pos) threadgroup
{
return elements[pos];
}
constexpr const threadgroup T& operator [] (size_t pos) const threadgroup
{
return elements[pos];
}
};
2019-06-11 08:45:22 +00:00
struct M0
{
long v;
2019-09-17 19:11:19 +00:00
spvUnsafeArray<long2, 2> b;
2019-06-11 08:45:22 +00:00
ulong c;
2019-09-17 19:11:19 +00:00
spvUnsafeArray<ulong, 5> d;
2019-06-11 08:45:22 +00:00
};
struct SSBO0_Type
2019-06-11 08:45:22 +00:00
{
long4 a;
M0 m0;
};
struct SSBO1_Type
2019-06-11 08:45:22 +00:00
{
ulong4 b;
M0 m0;
};
struct SSBO2_Type
2019-06-11 08:45:22 +00:00
{
2019-09-17 19:11:19 +00:00
spvUnsafeArray<long, 4> a;
spvUnsafeArray<long2, 4> b;
2019-06-11 08:45:22 +00:00
};
struct SSBO3_Type
2019-06-11 08:45:22 +00:00
{
2019-09-17 19:11:19 +00:00
spvUnsafeArray<long, 4> a;
spvUnsafeArray<long2, 4> b;
2019-06-11 08:45:22 +00:00
};
struct SSBO
2019-06-11 08:45:22 +00:00
{
int s32;
uint u32;
};
2019-09-24 22:13:04 +00:00
constant uint3 gl_WorkGroupSize [[maybe_unused]] = uint3(1u);
kernel void main0(device SSBO& _96 [[buffer(0)]])
{
SSBO0_Type ssbo_0;
2019-06-11 08:45:22 +00:00
ssbo_0.a += long4(10l, 20l, 30l, 40l);
SSBO1_Type ssbo_1;
2019-06-11 08:45:22 +00:00
ssbo_1.b += ulong4(999999999999999999ul, 8888888888888888ul, 77777777777777777ul, 6666666666666666ul);
ssbo_0.a += long4(20l);
ssbo_0.a = abs(ssbo_0.a + long4(ssbo_1.b));
ssbo_0.a += long4(1l);
ssbo_1.b += ulong4(long4(1l));
ssbo_0.a -= long4(1l);
ssbo_1.b -= ulong4(long4(1l));
SSBO2_Type ssbo_2;
2019-06-11 08:45:22 +00:00
ssbo_2.a[0] += 1l;
SSBO3_Type ssbo_3;
2019-06-11 08:45:22 +00:00
ssbo_3.a[0] += 2l;
_96.s32 = int(uint(((ulong(ssbo_0.a.x) + ssbo_1.b.y) + ulong(ssbo_2.a[1])) + ulong(ssbo_3.a[2])));
_96.u32 = uint(((ulong(ssbo_0.a.y) + ssbo_1.b.z) + ulong(ssbo_2.a[0])) + ulong(ssbo_3.a[1]));
2019-06-11 08:45:22 +00:00
}