diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-07-16 20:58:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-16 20:58:35 +0200 |
commit | b56e7f870add41d0300745342d24315e8fa3f881 (patch) | |
tree | 13f920af2c14ab8ae89bb3d9751c885c60789c03 /src/video_core/shader/track.cpp | |
parent | Merge pull request #2695 from ReinUsesLisp/layer-viewport (diff) | |
parent | shader: Allow tracking of indirect buffers without variable offset (diff) | |
download | yuzu-b56e7f870add41d0300745342d24315e8fa3f881.tar yuzu-b56e7f870add41d0300745342d24315e8fa3f881.tar.gz yuzu-b56e7f870add41d0300745342d24315e8fa3f881.tar.bz2 yuzu-b56e7f870add41d0300745342d24315e8fa3f881.tar.lz yuzu-b56e7f870add41d0300745342d24315e8fa3f881.tar.xz yuzu-b56e7f870add41d0300745342d24315e8fa3f881.tar.zst yuzu-b56e7f870add41d0300745342d24315e8fa3f881.zip |
Diffstat (limited to 'src/video_core/shader/track.cpp')
-rw-r--r-- | src/video_core/shader/track.cpp | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/src/video_core/shader/track.cpp b/src/video_core/shader/track.cpp index fc957d980..dc132a4a3 100644 --- a/src/video_core/shader/track.cpp +++ b/src/video_core/shader/track.cpp @@ -32,39 +32,44 @@ std::pair<Node, s64> FindOperation(const NodeBlock& code, s64 cursor, } return {}; } -} // namespace +} // Anonymous namespace -Node ShaderIR::TrackCbuf(Node tracked, const NodeBlock& code, s64 cursor) const { +std::tuple<Node, u32, u32> ShaderIR::TrackCbuf(Node tracked, const NodeBlock& code, + s64 cursor) const { if (const auto cbuf = std::get_if<CbufNode>(&*tracked)) { - // Cbuf found, but it has to be immediate - return std::holds_alternative<ImmediateNode>(*cbuf->GetOffset()) ? tracked : nullptr; + // Constant buffer found, test if it's an immediate + const auto offset = cbuf->GetOffset(); + if (const auto immediate = std::get_if<ImmediateNode>(&*offset)) { + return {tracked, cbuf->GetIndex(), immediate->GetValue()}; + } + return {}; } if (const auto gpr = std::get_if<GprNode>(&*tracked)) { if (gpr->GetIndex() == Tegra::Shader::Register::ZeroIndex) { - return nullptr; + return {}; } // Reduce the cursor in one to avoid infinite loops when the instruction sets the same // register that it uses as operand const auto [source, new_cursor] = TrackRegister(gpr, code, cursor - 1); if (!source) { - return nullptr; + return {}; } return TrackCbuf(source, code, new_cursor); } if (const auto operation = std::get_if<OperationNode>(&*tracked)) { for (std::size_t i = 0; i < operation->GetOperandsCount(); ++i) { - if (const auto found = TrackCbuf((*operation)[i], code, cursor)) { - // Cbuf found in operand + if (auto found = TrackCbuf((*operation)[i], code, cursor); std::get<0>(found)) { + // Cbuf found in operand. return found; } } - return nullptr; + return {}; } if (const auto conditional = std::get_if<ConditionalNode>(&*tracked)) { const auto& conditional_code = conditional->GetCode(); return TrackCbuf(tracked, conditional_code, static_cast<s64>(conditional_code.size())); } - return nullptr; + return {}; } std::optional<u32> ShaderIR::TrackImmediate(Node tracked, const NodeBlock& code, s64 cursor) const { |