summaryrefslogtreecommitdiffstats
path: root/src/common/x64/emitter.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-03-19 20:16:16 +0100
committerbunnei <bunneidev@gmail.com>2016-04-14 05:04:42 +0200
commite5d417213ce67bc23ac644132828d125a59c2455 (patch)
tree93c0cc9d8917cc43db9b45e6bdb52e162d1313b5 /src/common/x64/emitter.cpp
parentMerge pull request #1660 from MerryMage/file_util (diff)
downloadyuzu-e5d417213ce67bc23ac644132828d125a59c2455.tar
yuzu-e5d417213ce67bc23ac644132828d125a59c2455.tar.gz
yuzu-e5d417213ce67bc23ac644132828d125a59c2455.tar.bz2
yuzu-e5d417213ce67bc23ac644132828d125a59c2455.tar.lz
yuzu-e5d417213ce67bc23ac644132828d125a59c2455.tar.xz
yuzu-e5d417213ce67bc23ac644132828d125a59c2455.tar.zst
yuzu-e5d417213ce67bc23ac644132828d125a59c2455.zip
Diffstat (limited to 'src/common/x64/emitter.cpp')
-rw-r--r--src/common/x64/emitter.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/common/x64/emitter.cpp b/src/common/x64/emitter.cpp
index 1dcf2416c..6c8d10ea7 100644
--- a/src/common/x64/emitter.cpp
+++ b/src/common/x64/emitter.cpp
@@ -531,6 +531,22 @@ void XEmitter::SetJumpTarget(const FixupBranch& branch)
}
}
+void XEmitter::SetJumpTarget(const FixupBranch& branch, const u8* target)
+{
+ if (branch.type == 0)
+ {
+ s64 distance = (s64)(target - branch.ptr);
+ ASSERT_MSG(distance >= -0x80 && distance < 0x80, "Jump target too far away, needs force5Bytes = true");
+ branch.ptr[-1] = (u8)(s8)distance;
+ }
+ else if (branch.type == 1)
+ {
+ s64 distance = (s64)(target - branch.ptr);
+ ASSERT_MSG(distance >= -0x80000000LL && distance < 0x80000000LL, "Jump target too far away, needs indirect register");
+ ((s32*)branch.ptr)[-1] = (s32)distance;
+ }
+}
+
//Single byte opcodes
//There is no PUSHAD/POPAD in 64-bit mode.
void XEmitter::INT3() {Write8(0xCC);}