2021-05-26 15:41:02 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
2021-06-18 22:44:31 +00:00
|
|
|
void uses_a(threadgroup int* const tint_symbol_3) {
|
2021-07-29 13:51:47 +00:00
|
|
|
*(tint_symbol_3) = as_type<int>((as_type<uint>(*(tint_symbol_3)) + as_type<uint>(1)));
|
2021-05-26 15:41:02 +00:00
|
|
|
}
|
|
|
|
|
2021-06-18 22:44:31 +00:00
|
|
|
void uses_b(threadgroup int* const tint_symbol_4) {
|
2021-07-29 13:51:47 +00:00
|
|
|
*(tint_symbol_4) = as_type<int>((as_type<uint>(*(tint_symbol_4)) * as_type<uint>(2)));
|
2021-05-26 15:41:02 +00:00
|
|
|
}
|
|
|
|
|
2021-06-18 22:44:31 +00:00
|
|
|
void uses_a_and_b(threadgroup int* const tint_symbol_5, threadgroup int* const tint_symbol_6) {
|
|
|
|
*(tint_symbol_5) = *(tint_symbol_6);
|
2021-05-26 15:41:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void no_uses() {
|
|
|
|
}
|
|
|
|
|
2021-06-18 22:44:31 +00:00
|
|
|
void outer(threadgroup int* const tint_symbol_7, threadgroup int* const tint_symbol_8) {
|
|
|
|
*(tint_symbol_7) = 0;
|
|
|
|
uses_a(tint_symbol_7);
|
|
|
|
uses_a_and_b(tint_symbol_8, tint_symbol_7);
|
|
|
|
uses_b(tint_symbol_8);
|
2021-05-26 15:41:02 +00:00
|
|
|
no_uses();
|
|
|
|
}
|
|
|
|
|
2021-06-18 22:44:31 +00:00
|
|
|
kernel void main1(uint local_invocation_index [[thread_index_in_threadgroup]]) {
|
|
|
|
threadgroup int tint_symbol_9;
|
|
|
|
if ((local_invocation_index == 0u)) {
|
|
|
|
tint_symbol_9 = int();
|
|
|
|
}
|
2021-06-28 15:30:57 +00:00
|
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
2021-06-18 22:44:31 +00:00
|
|
|
tint_symbol_9 = 42;
|
|
|
|
uses_a(&(tint_symbol_9));
|
2021-05-26 15:41:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-18 22:44:31 +00:00
|
|
|
kernel void main2(uint local_invocation_index_1 [[thread_index_in_threadgroup]]) {
|
|
|
|
threadgroup int tint_symbol_10;
|
|
|
|
if ((local_invocation_index_1 == 0u)) {
|
|
|
|
tint_symbol_10 = int();
|
|
|
|
}
|
2021-06-28 15:30:57 +00:00
|
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
2021-06-18 22:44:31 +00:00
|
|
|
tint_symbol_10 = 7;
|
|
|
|
uses_b(&(tint_symbol_10));
|
2021-05-26 15:41:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-18 22:44:31 +00:00
|
|
|
kernel void main3(uint local_invocation_index_2 [[thread_index_in_threadgroup]]) {
|
|
|
|
threadgroup int tint_symbol_11;
|
|
|
|
threadgroup int tint_symbol_12;
|
|
|
|
if ((local_invocation_index_2 == 0u)) {
|
|
|
|
tint_symbol_11 = int();
|
|
|
|
tint_symbol_12 = int();
|
|
|
|
}
|
2021-06-28 15:30:57 +00:00
|
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
2021-06-18 22:44:31 +00:00
|
|
|
outer(&(tint_symbol_11), &(tint_symbol_12));
|
2021-05-26 15:41:02 +00:00
|
|
|
no_uses();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
kernel void main4() {
|
|
|
|
no_uses();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|