summaryrefslogtreecommitdiff
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorGravatar Subv2018-06-02 14:45:50 -0500
committerGravatar Subv2018-06-03 22:26:36 -0500
commitb481d8a00d5f09e091e03ed4b7c4d9f9652e0969 (patch)
tree14653c8ff9828be0cc11fbb06d41be89dc0ae41e /src/video_core/engines
parentGPU: Added decoding for the BRA instruction. (diff)
downloadyuzu-b481d8a00d5f09e091e03ed4b7c4d9f9652e0969.tar.gz
yuzu-b481d8a00d5f09e091e03ed4b7c4d9f9652e0969.tar.xz
yuzu-b481d8a00d5f09e091e03ed4b7c4d9f9652e0969.zip
GPU: Partially implemented the shader BRA instruction.
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/shader_bytecode.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 61643e086..a57b90632 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -288,6 +288,19 @@ union Instruction {
288 } 288 }
289 } texs; 289 } texs;
290 290
291 union {
292 BitField<20, 5, u64> target;
293 BitField<5, 1, u64> constant_buffer;
294
295 s32 GetBranchTarget() const {
296 // Sign extend the branch target offset
297 u32 mask = 1U << (5 - 1);
298 u32 value = static_cast<u32>(target);
299 // The branch offset is relative to the next instruction, so add 1 to it.
300 return static_cast<s32>((value ^ mask) - mask) + 1;
301 }
302 } bra;
303
291 BitField<61, 1, u64> is_b_imm; 304 BitField<61, 1, u64> is_b_imm;
292 BitField<60, 1, u64> is_b_gpr; 305 BitField<60, 1, u64> is_b_gpr;
293 BitField<59, 1, u64> is_c_gpr; 306 BitField<59, 1, u64> is_c_gpr;