mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 23:54:35 +00:00
Fix compile errors on macOS
This commit is contained in:
parent
1757acacff
commit
68b2cd58d8
2 changed files with 43 additions and 32 deletions
|
@ -12,9 +12,15 @@ add_definitions(-DASMJIT_STATIC)
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
set(CMAKE_DEBUG_POSTFIX "d")
|
set(CMAKE_DEBUG_POSTFIX "d")
|
||||||
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
|
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
|
||||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(APPLE)
|
||||||
|
# Suppress stdlib.h:334:6: warning: pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
|
||||||
|
add_definitions(-Wno-nullability-completeness)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
|
|
||||||
set(ASMJIT_PUBLIC_HDRS
|
set(ASMJIT_PUBLIC_HDRS
|
||||||
asmjit/arm.h
|
asmjit/arm.h
|
||||||
asmjit/asmjit.h
|
asmjit/asmjit.h
|
||||||
|
|
|
@ -19,11 +19,11 @@ public:
|
||||||
|
|
||||||
const char* what() const noexcept override
|
const char* what() const noexcept override
|
||||||
{
|
{
|
||||||
return message.c_str();
|
return message.GetChars();
|
||||||
}
|
}
|
||||||
|
|
||||||
asmjit::Error error;
|
asmjit::Error error;
|
||||||
std::string message;
|
FString message;
|
||||||
};
|
};
|
||||||
|
|
||||||
class ThrowingErrorHandler : public asmjit::ErrorHandler
|
class ThrowingErrorHandler : public asmjit::ErrorHandler
|
||||||
|
@ -268,6 +268,11 @@ void emitComparisonOpcode(asmjit::X86Compiler& cc, const TArray<asmjit::Label>&
|
||||||
cc.jmp(labels[i + 2 + JMPOFS(pc + 1)]);
|
cc.jmp(labels[i + 2 + JMPOFS(pc + 1)]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int64_t ToMemAddress(const void *d)
|
||||||
|
{
|
||||||
|
return (int64_t)(ptrdiff_t)d;
|
||||||
|
}
|
||||||
|
|
||||||
JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
#if 0 // For debugging
|
#if 0 // For debugging
|
||||||
|
@ -390,7 +395,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
case OP_LKF: // load float constant
|
case OP_LKF: // load float constant
|
||||||
{
|
{
|
||||||
auto tmp = cc.newIntPtr ();
|
auto tmp = cc.newIntPtr ();
|
||||||
cc.mov (tmp, (ptrdiff_t)&(konstf[BC]));
|
cc.mov (tmp, ToMemAddress(konstf + BC));
|
||||||
cc.movsd (regF[a], x86::qword_ptr (tmp));
|
cc.movsd (regF[a], x86::qword_ptr (tmp));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -401,12 +406,12 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
cc.mov(regA[a], (int64_t) konsta[BC].v);
|
cc.mov(regA[a], (int64_t) konsta[BC].v);
|
||||||
break;
|
break;
|
||||||
case OP_LK_R: // load integer constant indexed
|
case OP_LK_R: // load integer constant indexed
|
||||||
cc.mov(regD[a], x86::ptr((ptrdiff_t)konstd, regD[B], 2, C * 4));
|
cc.mov(regD[a], x86::ptr(ToMemAddress(konstd), regD[B], 2, C * 4));
|
||||||
break;
|
break;
|
||||||
case OP_LKF_R: // load float constant indexed
|
case OP_LKF_R: // load float constant indexed
|
||||||
{
|
{
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.mov(tmp, (ptrdiff_t)&(konstf[BC]));
|
cc.mov(tmp, ToMemAddress(konstf + BC));
|
||||||
cc.movsd(regF[a], x86::qword_ptr(tmp, regD[B], 3, C * 8));
|
cc.movsd(regF[a], x86::qword_ptr(tmp, regD[B], 3, C * 8));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -887,7 +892,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto konstTmp = cc.newIntPtr();
|
auto konstTmp = cc.newIntPtr();
|
||||||
cc.mov(tmp0, regD[B]);
|
cc.mov(tmp0, regD[B]);
|
||||||
cc.cdq(tmp1, tmp0);
|
cc.cdq(tmp1, tmp0);
|
||||||
cc.mov(konstTmp, reinterpret_cast<ptrdiff_t>(&konstd[C]));
|
cc.mov(konstTmp, ToMemAddress(&konstd[C]));
|
||||||
cc.idiv(tmp1, tmp0, x86::ptr(konstTmp));
|
cc.idiv(tmp1, tmp0, x86::ptr(konstTmp));
|
||||||
cc.mov(regD[A], tmp0);
|
cc.mov(regD[A], tmp0);
|
||||||
break;
|
break;
|
||||||
|
@ -919,7 +924,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto konstTmp = cc.newIntPtr();
|
auto konstTmp = cc.newIntPtr();
|
||||||
cc.mov(tmp0, regD[B]);
|
cc.mov(tmp0, regD[B]);
|
||||||
cc.mov(tmp1, 0);
|
cc.mov(tmp1, 0);
|
||||||
cc.mov(konstTmp, reinterpret_cast<ptrdiff_t>(&konstd[C]));
|
cc.mov(konstTmp, ToMemAddress(&konstd[C]));
|
||||||
cc.div(tmp1, tmp0, x86::ptr(konstTmp));
|
cc.div(tmp1, tmp0, x86::ptr(konstTmp));
|
||||||
cc.mov(regD[A], tmp0);
|
cc.mov(regD[A], tmp0);
|
||||||
break;
|
break;
|
||||||
|
@ -951,7 +956,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto konstTmp = cc.newIntPtr();
|
auto konstTmp = cc.newIntPtr();
|
||||||
cc.mov(tmp0, regD[B]);
|
cc.mov(tmp0, regD[B]);
|
||||||
cc.cdq(tmp1, tmp0);
|
cc.cdq(tmp1, tmp0);
|
||||||
cc.mov(konstTmp, reinterpret_cast<ptrdiff_t>(&konstd[C]));
|
cc.mov(konstTmp, ToMemAddress(&konstd[C]));
|
||||||
cc.idiv(tmp1, tmp0, x86::ptr(konstTmp));
|
cc.idiv(tmp1, tmp0, x86::ptr(konstTmp));
|
||||||
cc.mov(regD[A], tmp1);
|
cc.mov(regD[A], tmp1);
|
||||||
break;
|
break;
|
||||||
|
@ -983,7 +988,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto konstTmp = cc.newIntPtr();
|
auto konstTmp = cc.newIntPtr();
|
||||||
cc.mov(tmp0, regD[B]);
|
cc.mov(tmp0, regD[B]);
|
||||||
cc.mov(tmp1, 0);
|
cc.mov(tmp1, 0);
|
||||||
cc.mov(konstTmp, reinterpret_cast<ptrdiff_t>(&konstd[C]));
|
cc.mov(konstTmp, ToMemAddress(&konstd[C]));
|
||||||
cc.div(tmp1, tmp0, x86::ptr(konstTmp));
|
cc.div(tmp1, tmp0, x86::ptr(konstTmp));
|
||||||
cc.mov(regD[A], tmp1);
|
cc.mov(regD[A], tmp1);
|
||||||
break;
|
break;
|
||||||
|
@ -1031,7 +1036,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto tmp0 = cc.newXmmSs();
|
auto tmp0 = cc.newXmmSs();
|
||||||
auto tmp1 = cc.newXmmSs();
|
auto tmp1 = cc.newXmmSs();
|
||||||
auto konstTmp = cc.newIntPtr();
|
auto konstTmp = cc.newIntPtr();
|
||||||
cc.mov(konstTmp, reinterpret_cast<ptrdiff_t>(&konstd[C]));
|
cc.mov(konstTmp, ToMemAddress(&konstd[C]));
|
||||||
cc.movd(tmp0, regD[B]);
|
cc.movd(tmp0, regD[B]);
|
||||||
cc.movss(tmp1, x86::dword_ptr(konstTmp));
|
cc.movss(tmp1, x86::dword_ptr(konstTmp));
|
||||||
cc.pminsd(tmp0, tmp1);
|
cc.pminsd(tmp0, tmp1);
|
||||||
|
@ -1053,7 +1058,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto tmp0 = cc.newXmmSs();
|
auto tmp0 = cc.newXmmSs();
|
||||||
auto tmp1 = cc.newXmmSs();
|
auto tmp1 = cc.newXmmSs();
|
||||||
auto konstTmp = cc.newIntPtr();
|
auto konstTmp = cc.newIntPtr();
|
||||||
cc.mov(konstTmp, reinterpret_cast<ptrdiff_t>(&konstd[C]));
|
cc.mov(konstTmp, ToMemAddress(&konstd[C]));
|
||||||
cc.movd(tmp0, regD[B]);
|
cc.movd(tmp0, regD[B]);
|
||||||
cc.movss(tmp1, x86::dword_ptr(konstTmp));
|
cc.movss(tmp1, x86::dword_ptr(konstTmp));
|
||||||
cc.pmaxsd(tmp0, tmp1);
|
cc.pmaxsd(tmp0, tmp1);
|
||||||
|
@ -1126,7 +1131,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
auto compLambda = [&](X86Gp& result) {
|
auto compLambda = [&](X86Gp& result) {
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstd[B])));
|
cc.mov(tmp, ToMemAddress(&konstd[B]));
|
||||||
cc.cmp(x86::ptr(tmp), regD[C]);
|
cc.cmp(x86::ptr(tmp), regD[C]);
|
||||||
cc.setl(result);
|
cc.setl(result);
|
||||||
};
|
};
|
||||||
|
@ -1158,7 +1163,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
auto compLambda = [&](X86Gp& result) {
|
auto compLambda = [&](X86Gp& result) {
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstd[B])));
|
cc.mov(tmp, ToMemAddress(&konstd[B]));
|
||||||
cc.cmp(x86::ptr(tmp), regD[C]);
|
cc.cmp(x86::ptr(tmp), regD[C]);
|
||||||
cc.setle(result);
|
cc.setle(result);
|
||||||
};
|
};
|
||||||
|
@ -1190,7 +1195,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
auto compLambda = [&](X86Gp& result) {
|
auto compLambda = [&](X86Gp& result) {
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstd[B])));
|
cc.mov(tmp, ToMemAddress(&konstd[B]));
|
||||||
cc.cmp(x86::ptr(tmp), regD[C]);
|
cc.cmp(x86::ptr(tmp), regD[C]);
|
||||||
cc.setb(result);
|
cc.setb(result);
|
||||||
};
|
};
|
||||||
|
@ -1222,7 +1227,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
auto compLambda = [&](X86Gp& result) {
|
auto compLambda = [&](X86Gp& result) {
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstd[C])));
|
cc.mov(tmp, ToMemAddress(&konstd[C]));
|
||||||
cc.cmp(x86::ptr(tmp), regD[B]);
|
cc.cmp(x86::ptr(tmp), regD[B]);
|
||||||
cc.setbe(result);
|
cc.setbe(result);
|
||||||
};
|
};
|
||||||
|
@ -1240,7 +1245,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.movsd(regF[a], regF[B]);
|
cc.movsd(regF[a], regF[B]);
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||||
cc.addsd(regF[a], x86::qword_ptr(tmp));
|
cc.addsd(regF[a], x86::qword_ptr(tmp));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -1252,14 +1257,14 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.movsd(regF[a], regF[B]);
|
cc.movsd(regF[a], regF[B]);
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||||
cc.subsd(regF[a], x86::qword_ptr(tmp));
|
cc.subsd(regF[a], x86::qword_ptr(tmp));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case OP_SUBF_KR:
|
case OP_SUBF_KR:
|
||||||
{
|
{
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||||
cc.movsd(regF[a], x86::qword_ptr(tmp));
|
cc.movsd(regF[a], x86::qword_ptr(tmp));
|
||||||
cc.subsd(regF[a], regF[B]);
|
cc.subsd(regF[a], regF[B]);
|
||||||
break;
|
break;
|
||||||
|
@ -1272,7 +1277,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.movsd(regF[a], regF[B]);
|
cc.movsd(regF[a], regF[B]);
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||||
cc.mulsd(regF[a], x86::qword_ptr(tmp));
|
cc.mulsd(regF[a], x86::qword_ptr(tmp));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -1284,14 +1289,14 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.movsd(regF[a], regF[B]);
|
cc.movsd(regF[a], regF[B]);
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||||
cc.divsd(regF[a], x86::qword_ptr(tmp));
|
cc.divsd(regF[a], x86::qword_ptr(tmp));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case OP_DIVF_KR:
|
case OP_DIVF_KR:
|
||||||
{
|
{
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||||
cc.movsd(regF[a], x86::qword_ptr(tmp));
|
cc.movsd(regF[a], x86::qword_ptr(tmp));
|
||||||
cc.divsd(regF[a], regF[B]);
|
cc.divsd(regF[a], regF[B]);
|
||||||
break;
|
break;
|
||||||
|
@ -1351,7 +1356,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
if (!approx) {
|
if (!approx) {
|
||||||
auto konstTmp = cc.newIntPtr();
|
auto konstTmp = cc.newIntPtr();
|
||||||
auto parityTmp = cc.newInt32();
|
auto parityTmp = cc.newInt32();
|
||||||
cc.mov(konstTmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(konstTmp, ToMemAddress(&konstf[C]));
|
||||||
|
|
||||||
cc.ucomisd(regF[B], x86::qword_ptr(konstTmp));
|
cc.ucomisd(regF[B], x86::qword_ptr(konstTmp));
|
||||||
cc.sete(result);
|
cc.sete(result);
|
||||||
|
@ -1370,7 +1375,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto epsilon = cc.newDoubleConst(kConstScopeLocal, VM_EPSILON);
|
auto epsilon = cc.newDoubleConst(kConstScopeLocal, VM_EPSILON);
|
||||||
auto epsilonXmm = cc.newXmmSd();
|
auto epsilonXmm = cc.newXmmSd();
|
||||||
|
|
||||||
cc.mov(konstTmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(konstTmp, ToMemAddress(&konstf[C]));
|
||||||
|
|
||||||
cc.movsd(subTmp, regF[B]);
|
cc.movsd(subTmp, regF[B]);
|
||||||
cc.subsd(subTmp, x86::qword_ptr(konstTmp));
|
cc.subsd(subTmp, x86::qword_ptr(konstTmp));
|
||||||
|
@ -1402,7 +1407,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto compLambda = [&](X86Gp& result) {
|
auto compLambda = [&](X86Gp& result) {
|
||||||
auto constTmp = cc.newIntPtr();
|
auto constTmp = cc.newIntPtr();
|
||||||
auto xmmTmp = cc.newXmmSd();
|
auto xmmTmp = cc.newXmmSd();
|
||||||
cc.mov(constTmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(constTmp, ToMemAddress(&konstf[C]));
|
||||||
cc.movsd(xmmTmp, x86::qword_ptr(constTmp));
|
cc.movsd(xmmTmp, x86::qword_ptr(constTmp));
|
||||||
|
|
||||||
cc.ucomisd(xmmTmp, regF[B]);
|
cc.ucomisd(xmmTmp, regF[B]);
|
||||||
|
@ -1417,7 +1422,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
auto compLambda = [&](X86Gp& result) {
|
auto compLambda = [&](X86Gp& result) {
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[B])));
|
cc.mov(tmp, ToMemAddress(&konstf[B]));
|
||||||
|
|
||||||
cc.ucomisd(regF[C], x86::qword_ptr(tmp));
|
cc.ucomisd(regF[C], x86::qword_ptr(tmp));
|
||||||
cc.seta(result);
|
cc.seta(result);
|
||||||
|
@ -1443,7 +1448,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto compLambda = [&](X86Gp& result) {
|
auto compLambda = [&](X86Gp& result) {
|
||||||
auto constTmp = cc.newIntPtr();
|
auto constTmp = cc.newIntPtr();
|
||||||
auto xmmTmp = cc.newXmmSd();
|
auto xmmTmp = cc.newXmmSd();
|
||||||
cc.mov(constTmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(constTmp, ToMemAddress(&konstf[C]));
|
||||||
cc.movsd(xmmTmp, x86::qword_ptr(constTmp));
|
cc.movsd(xmmTmp, x86::qword_ptr(constTmp));
|
||||||
|
|
||||||
cc.ucomisd(xmmTmp, regF[B]);
|
cc.ucomisd(xmmTmp, regF[B]);
|
||||||
|
@ -1458,7 +1463,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
{
|
{
|
||||||
auto compLambda = [&](X86Gp& result) {
|
auto compLambda = [&](X86Gp& result) {
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[B])));
|
cc.mov(tmp, ToMemAddress(&konstf[B]));
|
||||||
|
|
||||||
cc.ucomisd(regF[C], x86::qword_ptr(tmp));
|
cc.ucomisd(regF[C], x86::qword_ptr(tmp));
|
||||||
cc.setae(result);
|
cc.setae(result);
|
||||||
|
@ -1510,7 +1515,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.movsd(regF[a], regF[B]);
|
cc.movsd(regF[a], regF[B]);
|
||||||
cc.movsd(regF[a + 1], regF[B + 1]);
|
cc.movsd(regF[a + 1], regF[B + 1]);
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||||
cc.mulsd(regF[a], x86::qword_ptr(tmp));
|
cc.mulsd(regF[a], x86::qword_ptr(tmp));
|
||||||
cc.mulsd(regF[a + 1], x86::qword_ptr(tmp));
|
cc.mulsd(regF[a + 1], x86::qword_ptr(tmp));
|
||||||
break;
|
break;
|
||||||
|
@ -1526,7 +1531,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.movsd(regF[a], regF[B]);
|
cc.movsd(regF[a], regF[B]);
|
||||||
cc.movsd(regF[a + 1], regF[B + 1]);
|
cc.movsd(regF[a + 1], regF[B + 1]);
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||||
cc.divsd(regF[a], x86::qword_ptr(tmp));
|
cc.divsd(regF[a], x86::qword_ptr(tmp));
|
||||||
cc.divsd(regF[a + 1], x86::qword_ptr(tmp));
|
cc.divsd(regF[a + 1], x86::qword_ptr(tmp));
|
||||||
break;
|
break;
|
||||||
|
@ -1627,7 +1632,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
cc.movsd(regF[a], regF[B]);
|
cc.movsd(regF[a], regF[B]);
|
||||||
cc.movsd(regF[a + 1], regF[B + 1]);
|
cc.movsd(regF[a + 1], regF[B + 1]);
|
||||||
cc.movsd(regF[a + 2], regF[B + 2]);
|
cc.movsd(regF[a + 2], regF[B + 2]);
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||||
cc.mulsd(regF[a], x86::qword_ptr(tmp));
|
cc.mulsd(regF[a], x86::qword_ptr(tmp));
|
||||||
cc.mulsd(regF[a + 1], x86::qword_ptr(tmp));
|
cc.mulsd(regF[a + 1], x86::qword_ptr(tmp));
|
||||||
cc.mulsd(regF[a + 2], x86::qword_ptr(tmp));
|
cc.mulsd(regF[a + 2], x86::qword_ptr(tmp));
|
||||||
|
@ -1647,7 +1652,7 @@ JitFuncPtr JitCompile(VMScriptFunction *sfunc)
|
||||||
cc.movsd(regF[a], regF[B]);
|
cc.movsd(regF[a], regF[B]);
|
||||||
cc.movsd(regF[a + 1], regF[B + 1]);
|
cc.movsd(regF[a + 1], regF[B + 1]);
|
||||||
cc.movsd(regF[a + 2], regF[B + 2]);
|
cc.movsd(regF[a + 2], regF[B + 2]);
|
||||||
cc.mov(tmp, reinterpret_cast<ptrdiff_t>(&(konstf[C])));
|
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||||
cc.divsd(regF[a], x86::qword_ptr(tmp));
|
cc.divsd(regF[a], x86::qword_ptr(tmp));
|
||||||
cc.divsd(regF[a + 1], x86::qword_ptr(tmp));
|
cc.divsd(regF[a + 1], x86::qword_ptr(tmp));
|
||||||
cc.divsd(regF[a + 2], x86::qword_ptr(tmp));
|
cc.divsd(regF[a + 2], x86::qword_ptr(tmp));
|
||||||
|
|
Loading…
Reference in a new issue