diff options
| author | 2018-03-16 20:32:44 -0500 | |
|---|---|---|
| committer | 2018-03-16 20:32:44 -0500 | |
| commit | 29feece4b849bd40cc6dcef6c60f4bc58707557a (patch) | |
| tree | a9e78b0689325e2f3b330785c767e5b3ff2f738e /src/video_core/engines | |
| parent | Merge pull request #236 from bunnei/refactor-process-creation (diff) | |
| download | yuzu-29feece4b849bd40cc6dcef6c60f4bc58707557a.tar.gz yuzu-29feece4b849bd40cc6dcef6c60f4bc58707557a.tar.xz yuzu-29feece4b849bd40cc6dcef6c60f4bc58707557a.zip | |
GPU: Process command mode 5 (IncreaseOnce) differently from other commands.
Accumulate all arguments before calling the desired method.
Note: Maybe we should do the same for the NonIncreasing mode?
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/fermi_2d.cpp | 1 | ||||
| -rw-r--r-- | src/video_core/engines/fermi_2d.h | 8 | ||||
| -rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 17 | ||||
| -rw-r--r-- | src/video_core/engines/maxwell_3d.h | 22 | ||||
| -rw-r--r-- | src/video_core/engines/maxwell_compute.cpp | 1 | ||||
| -rw-r--r-- | src/video_core/engines/maxwell_compute.h | 8 |
6 files changed, 56 insertions, 1 deletions
diff --git a/src/video_core/engines/fermi_2d.cpp b/src/video_core/engines/fermi_2d.cpp index 7aab163dc..6c6162cf3 100644 --- a/src/video_core/engines/fermi_2d.cpp +++ b/src/video_core/engines/fermi_2d.cpp | |||
| @@ -8,6 +8,7 @@ namespace Tegra { | |||
| 8 | namespace Engines { | 8 | namespace Engines { |
| 9 | 9 | ||
| 10 | void Fermi2D::WriteReg(u32 method, u32 value) {} | 10 | void Fermi2D::WriteReg(u32 method, u32 value) {} |
| 11 | void Fermi2D::CallMethod(u32 method, const std::vector<u32>& parameters) {} | ||
| 11 | 12 | ||
| 12 | } // namespace Engines | 13 | } // namespace Engines |
| 13 | } // namespace Tegra | 14 | } // namespace Tegra |
diff --git a/src/video_core/engines/fermi_2d.h b/src/video_core/engines/fermi_2d.h index 8967ddede..ce8920cee 100644 --- a/src/video_core/engines/fermi_2d.h +++ b/src/video_core/engines/fermi_2d.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <vector> | ||
| 7 | #include "common/common_types.h" | 8 | #include "common/common_types.h" |
| 8 | 9 | ||
| 9 | namespace Tegra { | 10 | namespace Tegra { |
| @@ -16,6 +17,13 @@ public: | |||
| 16 | 17 | ||
| 17 | /// Write the value to the register identified by method. | 18 | /// Write the value to the register identified by method. |
| 18 | void WriteReg(u32 method, u32 value); | 19 | void WriteReg(u32 method, u32 value); |
| 20 | |||
| 21 | /** | ||
| 22 | * Handles a method call to this engine. | ||
| 23 | * @param method Method to call | ||
| 24 | * @param parameters Arguments to the method call | ||
| 25 | */ | ||
| 26 | void CallMethod(u32 method, const std::vector<u32>& parameters); | ||
| 19 | }; | 27 | }; |
| 20 | 28 | ||
| 21 | } // namespace Engines | 29 | } // namespace Engines |
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 842c5a014..ef32180dd 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp | |||
| @@ -8,8 +8,23 @@ | |||
| 8 | namespace Tegra { | 8 | namespace Tegra { |
| 9 | namespace Engines { | 9 | namespace Engines { |
| 10 | 10 | ||
| 11 | const std::unordered_map<u32, Maxwell3D::MethodInfo> Maxwell3D::method_handlers = { | ||
| 12 | {0xE24, {"PrepareShader", 5, &Maxwell3D::PrepareShader}}, | ||
| 13 | }; | ||
| 14 | |||
| 11 | Maxwell3D::Maxwell3D(MemoryManager& memory_manager) : memory_manager(memory_manager) {} | 15 | Maxwell3D::Maxwell3D(MemoryManager& memory_manager) : memory_manager(memory_manager) {} |
| 12 | 16 | ||
| 17 | void Maxwell3D::CallMethod(u32 method, const std::vector<u32>& parameters) { | ||
| 18 | auto itr = method_handlers.find(method); | ||
| 19 | if (itr == method_handlers.end()) { | ||
| 20 | LOG_ERROR(HW_GPU, "Unhandled method call %08X", method); | ||
| 21 | return; | ||
| 22 | } | ||
| 23 | |||
| 24 | ASSERT(itr->second.arguments == parameters.size()); | ||
| 25 | (this->*itr->second.handler)(parameters); | ||
| 26 | } | ||
| 27 | |||
| 13 | void Maxwell3D::WriteReg(u32 method, u32 value) { | 28 | void Maxwell3D::WriteReg(u32 method, u32 value) { |
| 14 | ASSERT_MSG(method < Regs::NUM_REGS, | 29 | ASSERT_MSG(method < Regs::NUM_REGS, |
| 15 | "Invalid Maxwell3D register, increase the size of the Regs structure"); | 30 | "Invalid Maxwell3D register, increase the size of the Regs structure"); |
| @@ -56,5 +71,7 @@ void Maxwell3D::DrawArrays() { | |||
| 56 | LOG_WARNING(HW_GPU, "Game requested a DrawArrays, ignoring"); | 71 | LOG_WARNING(HW_GPU, "Game requested a DrawArrays, ignoring"); |
| 57 | } | 72 | } |
| 58 | 73 | ||
| 74 | void Maxwell3D::PrepareShader(const std::vector<u32>& parameters) {} | ||
| 75 | |||
| 59 | } // namespace Engines | 76 | } // namespace Engines |
| 60 | } // namespace Tegra | 77 | } // namespace Tegra |
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 93f7698a0..954369cf5 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h | |||
| @@ -4,6 +4,8 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <unordered_map> | ||
| 8 | #include <vector> | ||
| 7 | #include "common/bit_field.h" | 9 | #include "common/bit_field.h" |
| 8 | #include "common/common_funcs.h" | 10 | #include "common/common_funcs.h" |
| 9 | #include "common/common_types.h" | 11 | #include "common/common_types.h" |
| @@ -20,6 +22,13 @@ public: | |||
| 20 | /// Write the value to the register identified by method. | 22 | /// Write the value to the register identified by method. |
| 21 | void WriteReg(u32 method, u32 value); | 23 | void WriteReg(u32 method, u32 value); |
| 22 | 24 | ||
| 25 | /** | ||
| 26 | * Handles a method call to this engine. | ||
| 27 | * @param method Method to call | ||
| 28 | * @param parameters Arguments to the method call | ||
| 29 | */ | ||
| 30 | void CallMethod(u32 method, const std::vector<u32>& parameters); | ||
| 31 | |||
| 23 | /// Register structure of the Maxwell3D engine. | 32 | /// Register structure of the Maxwell3D engine. |
| 24 | /// TODO(Subv): This structure will need to be made bigger as more registers are discovered. | 33 | /// TODO(Subv): This structure will need to be made bigger as more registers are discovered. |
| 25 | struct Regs { | 34 | struct Regs { |
| @@ -63,13 +72,24 @@ public: | |||
| 63 | static_assert(sizeof(Regs) == Regs::NUM_REGS * sizeof(u32), "Maxwell3D Regs has wrong size"); | 72 | static_assert(sizeof(Regs) == Regs::NUM_REGS * sizeof(u32), "Maxwell3D Regs has wrong size"); |
| 64 | 73 | ||
| 65 | private: | 74 | private: |
| 75 | MemoryManager& memory_manager; | ||
| 76 | |||
| 66 | /// Handles a write to the QUERY_GET register. | 77 | /// Handles a write to the QUERY_GET register. |
| 67 | void ProcessQueryGet(); | 78 | void ProcessQueryGet(); |
| 68 | 79 | ||
| 69 | /// Handles a write to the VERTEX_END_GL register, triggering a draw. | 80 | /// Handles a write to the VERTEX_END_GL register, triggering a draw. |
| 70 | void DrawArrays(); | 81 | void DrawArrays(); |
| 71 | 82 | ||
| 72 | MemoryManager& memory_manager; | 83 | /// Method call handlers |
| 84 | void PrepareShader(const std::vector<u32>& parameters); | ||
| 85 | |||
| 86 | struct MethodInfo { | ||
| 87 | const char* name; | ||
| 88 | u32 arguments; | ||
| 89 | void (Maxwell3D::*handler)(const std::vector<u32>& parameters); | ||
| 90 | }; | ||
| 91 | |||
| 92 | static const std::unordered_map<u32, MethodInfo> method_handlers; | ||
| 73 | }; | 93 | }; |
| 74 | 94 | ||
| 75 | #define ASSERT_REG_POSITION(field_name, position) \ | 95 | #define ASSERT_REG_POSITION(field_name, position) \ |
diff --git a/src/video_core/engines/maxwell_compute.cpp b/src/video_core/engines/maxwell_compute.cpp index e4e5f9e5e..3bef7fe86 100644 --- a/src/video_core/engines/maxwell_compute.cpp +++ b/src/video_core/engines/maxwell_compute.cpp | |||
| @@ -8,6 +8,7 @@ namespace Tegra { | |||
| 8 | namespace Engines { | 8 | namespace Engines { |
| 9 | 9 | ||
| 10 | void MaxwellCompute::WriteReg(u32 method, u32 value) {} | 10 | void MaxwellCompute::WriteReg(u32 method, u32 value) {} |
| 11 | void MaxwellCompute::CallMethod(u32 method, const std::vector<u32>& parameters) {} | ||
| 11 | 12 | ||
| 12 | } // namespace Engines | 13 | } // namespace Engines |
| 13 | } // namespace Tegra | 14 | } // namespace Tegra |
diff --git a/src/video_core/engines/maxwell_compute.h b/src/video_core/engines/maxwell_compute.h index 7262e1bcb..5fc7ed635 100644 --- a/src/video_core/engines/maxwell_compute.h +++ b/src/video_core/engines/maxwell_compute.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <vector> | ||
| 7 | #include "common/common_types.h" | 8 | #include "common/common_types.h" |
| 8 | 9 | ||
| 9 | namespace Tegra { | 10 | namespace Tegra { |
| @@ -16,6 +17,13 @@ public: | |||
| 16 | 17 | ||
| 17 | /// Write the value to the register identified by method. | 18 | /// Write the value to the register identified by method. |
| 18 | void WriteReg(u32 method, u32 value); | 19 | void WriteReg(u32 method, u32 value); |
| 20 | |||
| 21 | /** | ||
| 22 | * Handles a method call to this engine. | ||
| 23 | * @param method Method to call | ||
| 24 | * @param parameters Arguments to the method call | ||
| 25 | */ | ||
| 26 | void CallMethod(u32 method, const std::vector<u32>& parameters); | ||
| 19 | }; | 27 | }; |
| 20 | 28 | ||
| 21 | } // namespace Engines | 29 | } // namespace Engines |