mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 14:09:57 +00:00
Merge pull request #3328 from ReinUsesLisp/vulkan-atoms
vk_shader_decompiler: Implement UAtomicAdd (ATOMS) on SPIR-V
This commit is contained in:
commit
69b44392a7
2 changed files with 12 additions and 4 deletions
2
externals/sirit
vendored
2
externals/sirit
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit 9f4d057aa28c4e9509bdc767afb27b4aee303b7e
|
Subproject commit a712959f1e373a33b48042b5934e288a243d5954
|
|
@ -1796,9 +1796,17 @@ private:
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Expression UAtomicAdd(Operation) {
|
Expression UAtomicAdd(Operation operation) {
|
||||||
UNIMPLEMENTED();
|
const auto& smem = std::get<SmemNode>(*operation[0]);
|
||||||
return {};
|
Id address = AsUint(Visit(smem.GetAddress()));
|
||||||
|
address = OpShiftRightLogical(t_uint, address, Constant(t_uint, 2U));
|
||||||
|
const Id pointer = OpAccessChain(t_smem_uint, shared_memory, address);
|
||||||
|
|
||||||
|
const Id scope = Constant(t_uint, static_cast<u32>(spv::Scope::Device));
|
||||||
|
const Id semantics = Constant(t_uint, 0U);
|
||||||
|
|
||||||
|
const Id value = AsUint(Visit(operation[1]));
|
||||||
|
return {OpAtomicIAdd(t_uint, pointer, scope, semantics, value), Type::Uint};
|
||||||
}
|
}
|
||||||
|
|
||||||
Expression Branch(Operation operation) {
|
Expression Branch(Operation operation) {
|
||||||
|
|
Loading…
Reference in a new issue