summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Liam2022-03-16 11:05:04 -0400
committerGravatar Liam2022-03-16 11:05:04 -0400
commit1415542f73fe013a010f03937697a1d22653b95c (patch)
treeaabfb327fca6cb0dcc5bb2d66862f60565965396
parentshader: add support for const buffer indirect addressing (diff)
downloadyuzu-1415542f73fe013a010f03937697a1d22653b95c.tar.gz
yuzu-1415542f73fe013a010f03937697a1d22653b95c.tar.xz
yuzu-1415542f73fe013a010f03937697a1d22653b95c.zip
shader_recompiler: Implement LDC.IS address mode
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/load_constant.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/load_constant.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/load_constant.cpp
index 2300088e3..8007a4d46 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/load_constant.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/load_constant.cpp
@@ -11,10 +11,20 @@ namespace Shader::Maxwell {
11using namespace LDC; 11using namespace LDC;
12namespace { 12namespace {
13std::pair<IR::U32, IR::U32> Slot(IR::IREmitter& ir, Mode mode, const IR::U32& imm_index, 13std::pair<IR::U32, IR::U32> Slot(IR::IREmitter& ir, Mode mode, const IR::U32& imm_index,
14 const IR::U32& reg, const IR::U32& imm) { 14 const IR::U32& reg, const IR::U32& imm_offset) {
15 switch (mode) { 15 switch (mode) {
16 case Mode::Default: 16 case Mode::Default:
17 return {imm_index, ir.IAdd(reg, imm)}; 17 return {imm_index, ir.IAdd(reg, imm_offset)};
18 case Mode::IS: {
19 // Segmented addressing mode
20 // Ra+imm_offset points into a flat mapping of const buffer
21 // address space
22 const IR::U32 address{ir.IAdd(reg, imm_offset)};
23 const IR::U32 index{ir.BitFieldExtract(address, ir.Imm32(16), ir.Imm32(16))};
24 const IR::U32 offset{ir.BitFieldExtract(address, ir.Imm32(0), ir.Imm32(16))};
25
26 return {ir.IAdd(index, imm_index), offset};
27 }
18 default: 28 default:
19 break; 29 break;
20 } 30 }