aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/gpu_debugger.h
diff options
context:
space:
mode:
authorGravatar Tony Wasserka <NeoBrainX@gmail.com>2014-05-18 17:28:30 +0200
committerGravatar bunnei <ericbunnie@gmail.com>2014-06-12 06:10:51 -0400
commit5d62f5d92a53d4bbec20069984f5a5c7fa73524a (patch)
treeb56a18443bc213248f28b4d1a14eedc61f02352e /src/video_core/gpu_debugger.h
parent50b2b73be4bc294856726e9a0f46fd16af355b0e (diff)
GPU debugger: Add functionality to inspect command lists.
Diffstat (limited to 'src/video_core/gpu_debugger.h')
-rw-r--r--src/video_core/gpu_debugger.h54
1 files changed, 53 insertions, 1 deletions
diff --git a/src/video_core/gpu_debugger.h b/src/video_core/gpu_debugger.h
index ace9de95..4dafd314 100644
--- a/src/video_core/gpu_debugger.h
+++ b/src/video_core/gpu_debugger.h
@@ -11,11 +11,23 @@
#include "common/log.h"
#include "core/hle/service/gsp.h"
-
+#include "pica.h"
class GraphicsDebugger
{
public:
+ // A few utility structs used to expose data
+ // A vector of commands represented by their raw byte sequence
+ struct PicaCommand : public std::vector<u32>
+ {
+ Pica::CommandHeader& GetHeader()
+ {
+ return *(Pica::CommandHeader*)&(front());
+ }
+ };
+
+ typedef std::vector<PicaCommand> PicaCommandList;
+
// Base class for all objects which need to be notified about GPU events
class DebuggerObserver
{
@@ -40,6 +52,16 @@ public:
ERROR_LOG(GSP, "Received command: id=%x", cmd.id);
}
+ /**
+ * @param lst command list which triggered this call
+ * @param is_new true if the command list was called for the first time
+ * @todo figure out how to make sure called functions don't keep references around beyond their life time
+ */
+ virtual void CommandListCalled(const PicaCommandList& lst, bool is_new)
+ {
+ ERROR_LOG(GSP, "Command list called: %d", (int)is_new);
+ }
+
protected:
GraphicsDebugger* GetDebugger()
{
@@ -66,12 +88,39 @@ public:
} );
}
+ void CommandListCalled(u32 address, u32* command_list, u32 size_in_words)
+ {
+ // TODO: Decoding fun
+
+ // For now, just treating the whole command list as a single command
+ PicaCommandList cmdlist;
+ cmdlist.push_back(PicaCommand());
+ auto& cmd = cmdlist[0];
+ cmd.reserve(size_in_words);
+ std::copy(command_list, command_list+size_in_words, std::back_inserter(cmd));
+
+ auto obj = std::pair<u32,PicaCommandList>(address, cmdlist);
+ auto it = std::find(command_lists.begin(), command_lists.end(), obj);
+ bool is_new = (it == command_lists.end());
+ if (is_new)
+ command_lists.push_back(obj);
+
+ ForEachObserver([&](DebuggerObserver* observer) {
+ observer->CommandListCalled(obj.second, is_new);
+ } );
+ }
+
const GSP_GPU::GXCommand& ReadGXCommandHistory(int index) const
{
// TODO: Is this thread-safe?
return gx_command_history[index];
}
+ const std::vector<std::pair<u32,PicaCommandList>>& GetCommandLists() const
+ {
+ return command_lists;
+ }
+
void RegisterObserver(DebuggerObserver* observer)
{
// TODO: Check for duplicates
@@ -94,4 +143,7 @@ private:
std::vector<DebuggerObserver*> observers;
std::vector<GSP_GPU::GXCommand> gx_command_history;
+
+ // vector of pairs of command lists and their storage address
+ std::vector<std::pair<u32,PicaCommandList>> command_lists;
};