diff options
author | Lioncash <mathew1800@gmail.com> | 2022-01-25 19:30:51 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-01-25 19:31:54 +0100 |
commit | f11eefed5619319629b399aec07880cc12c760a3 (patch) | |
tree | 0a085489689be28c73aa3a5b67008359c6acd8aa /src/video_core | |
parent | video_core/macro_jit_x64: Move impl class into cpp file (diff) | |
download | yuzu-f11eefed5619319629b399aec07880cc12c760a3.tar yuzu-f11eefed5619319629b399aec07880cc12c760a3.tar.gz yuzu-f11eefed5619319629b399aec07880cc12c760a3.tar.bz2 yuzu-f11eefed5619319629b399aec07880cc12c760a3.tar.lz yuzu-f11eefed5619319629b399aec07880cc12c760a3.tar.xz yuzu-f11eefed5619319629b399aec07880cc12c760a3.tar.zst yuzu-f11eefed5619319629b399aec07880cc12c760a3.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/macro/macro_jit_x64.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/video_core/macro/macro_jit_x64.cpp b/src/video_core/macro/macro_jit_x64.cpp index 1934039c0..4b1b8c157 100644 --- a/src/video_core/macro/macro_jit_x64.cpp +++ b/src/video_core/macro/macro_jit_x64.cpp @@ -40,6 +40,10 @@ const std::bitset<32> PERSISTENT_REGISTERS = Common::X64::BuildRegSet({ // Arbitrarily chosen based on current booting games. constexpr size_t MAX_CODE_SIZE = 0x10000; +std::bitset<32> PersistentCallerSavedRegs() { + return PERSISTENT_REGISTERS & Common::X64::ABI_ALL_CALLER_SAVED; +} + class MacroJITx64Impl final : public Xbyak::CodeGenerator, public CachedMacro { public: explicit MacroJITx64Impl(Engines::Maxwell3D& maxwell3d_, const std::vector<u32>& code_) @@ -70,7 +74,6 @@ private: void Compile_Send(Xbyak::Reg32 value); Macro::Opcode GetOpCode() const; - std::bitset<32> PersistentCallerSavedRegs() const; struct JITState { Engines::Maxwell3D* maxwell3d{}; @@ -674,10 +677,6 @@ Macro::Opcode MacroJITx64Impl::GetOpCode() const { ASSERT(pc < code.size()); return {code[pc]}; } - -std::bitset<32> MacroJITx64Impl::PersistentCallerSavedRegs() const { - return PERSISTENT_REGISTERS & Common::X64::ABI_ALL_CALLER_SAVED; -} } // Anonymous namespace MacroJITx64::MacroJITx64(Engines::Maxwell3D& maxwell3d_) |