mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-13 16:45:56 +00:00
Bug: tint:1574 Change-Id: Id4ae2d2de9ac4678260f4ecfb3a0f779d170f9a4 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/92280 Reviewed-by: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Antonio Maiorano <amaiorano@google.com>
33 lines
940 B
Plaintext
33 lines
940 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
|
|
struct atomic_compare_exchange_resulti32 {
|
|
int old_value;
|
|
bool exchanged;
|
|
};
|
|
atomic_compare_exchange_resulti32 atomicCompareExchangeWeak_1(device atomic_int* atomic, int compare, int value) {
|
|
int old_value = compare;
|
|
bool exchanged = atomic_compare_exchange_weak_explicit(atomic, &old_value, value, memory_order_relaxed, memory_order_relaxed);
|
|
return {old_value, exchanged};
|
|
}
|
|
|
|
struct SB_RW {
|
|
/* 0x0000 */ atomic_int arg_0;
|
|
};
|
|
|
|
void atomicCompareExchangeWeak_1bd40a(device SB_RW* const tint_symbol) {
|
|
atomic_compare_exchange_resulti32 res = atomicCompareExchangeWeak_1(&((*(tint_symbol)).arg_0), 1, 1);
|
|
}
|
|
|
|
fragment void fragment_main(device SB_RW* tint_symbol_1 [[buffer(0)]]) {
|
|
atomicCompareExchangeWeak_1bd40a(tint_symbol_1);
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main(device SB_RW* tint_symbol_2 [[buffer(0)]]) {
|
|
atomicCompareExchangeWeak_1bd40a(tint_symbol_2);
|
|
return;
|
|
}
|
|
|