forked from hrydgard/ppsspp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestX64Emitter.cpp
55 lines (41 loc) · 1.17 KB
/
TestX64Emitter.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include "ppsspp_config.h"
#if PPSSPP_ARCH(AMD64) || PPSSPP_ARCH(X86)
#include "Common/x64Emitter.h"
#include "Core/MIPS/x86/RegCacheFPU.h"
#include "Core/MIPS/x86/Jit.h"
#include "Core/MIPS/JitCommon/JitState.h"
#include "Core/MIPS/JitCommon/JitCommon.h"
#include "Core/MIPS/MIPSVFPUUtils.h"
#include "ext/disarm.h"
#include "UnitTest.h"
static const u8 *prevStart = NULL;
bool CheckLast(Gen::XEmitter &emit, const char *comp) {
auto vec = DisassembleX86(prevStart, (int)(emit.GetCodePointer() - prevStart));
EXPECT_EQ_STR(vec[0], std::string(comp));
return true;
}
void PrintLast(Gen::XEmitter &emit) {
for (const u8 *p = prevStart; p < emit.GetCodePointer(); p++) {
printf("%02x ", *p);
}
printf("\n");
}
bool TestX64Emitter() {
using namespace Gen;
u32 code[512];
XEmitter emitter((u8 *)code);
prevStart = emitter.GetCodePointer();
emitter.VADDSD(XMM0, XMM1, R(XMM7));
RET(CheckLast(emitter, "vaddsd xmm0, xmm1, xmm7"));
prevStart = emitter.GetCodePointer();
emitter.VMULSD(XMM0, XMM1, R(XMM7));
RET(CheckLast(emitter, "vmulsd xmm0, xmm1, xmm7"));
// Just for checking.
PrintLast(emitter);
return true;
}
#else
bool TestX64Emitter() {
return true;
}
#endif