diff options
| author | 2020-09-03 20:24:27 -0400 | |
|---|---|---|
| committer | 2020-09-03 20:24:27 -0400 | |
| commit | 94a25b75a0baf3a35a5b343e0908efa7b2ccf1d9 (patch) | |
| tree | 8d17bf61c717eda5c5dd07c308a51784b927afd3 /src/video_core/macro | |
| parent | Merge pull request #4583 from lioncash/trunc (diff) | |
| parent | externals: Update Xbyak to 5.96 (diff) | |
| download | yuzu-94a25b75a0baf3a35a5b343e0908efa7b2ccf1d9.tar.gz yuzu-94a25b75a0baf3a35a5b343e0908efa7b2ccf1d9.tar.xz yuzu-94a25b75a0baf3a35a5b343e0908efa7b2ccf1d9.zip | |
Merge pull request #4611 from lioncash/xbyak2
externals: Update Xbyak to 5.96
Diffstat (limited to 'src/video_core/macro')
| -rw-r--r-- | src/video_core/macro/macro_jit_x64.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_core/macro/macro_jit_x64.cpp b/src/video_core/macro/macro_jit_x64.cpp index c1b9e4ad9..954b87515 100644 --- a/src/video_core/macro/macro_jit_x64.cpp +++ b/src/video_core/macro/macro_jit_x64.cpp | |||
| @@ -14,11 +14,11 @@ MICROPROFILE_DEFINE(MacroJitCompile, "GPU", "Compile macro JIT", MP_RGB(173, 255 | |||
| 14 | MICROPROFILE_DEFINE(MacroJitExecute, "GPU", "Execute macro JIT", MP_RGB(255, 255, 0)); | 14 | MICROPROFILE_DEFINE(MacroJitExecute, "GPU", "Execute macro JIT", MP_RGB(255, 255, 0)); |
| 15 | 15 | ||
| 16 | namespace Tegra { | 16 | namespace Tegra { |
| 17 | static const Xbyak::Reg64 STATE = Xbyak::util::rbx; | 17 | constexpr Xbyak::Reg64 STATE = Xbyak::util::rbx; |
| 18 | static const Xbyak::Reg32 RESULT = Xbyak::util::ebp; | 18 | constexpr Xbyak::Reg32 RESULT = Xbyak::util::ebp; |
| 19 | static const Xbyak::Reg64 PARAMETERS = Xbyak::util::r12; | 19 | constexpr Xbyak::Reg64 PARAMETERS = Xbyak::util::r12; |
| 20 | static const Xbyak::Reg32 METHOD_ADDRESS = Xbyak::util::r14d; | 20 | constexpr Xbyak::Reg32 METHOD_ADDRESS = Xbyak::util::r14d; |
| 21 | static const Xbyak::Reg64 BRANCH_HOLDER = Xbyak::util::r15; | 21 | constexpr Xbyak::Reg64 BRANCH_HOLDER = Xbyak::util::r15; |
| 22 | 22 | ||
| 23 | static const std::bitset<32> PERSISTENT_REGISTERS = Common::X64::BuildRegSet({ | 23 | static const std::bitset<32> PERSISTENT_REGISTERS = Common::X64::BuildRegSet({ |
| 24 | STATE, | 24 | STATE, |