2018-12-13 22:11:55 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2018 tevador
|
|
|
|
|
|
|
|
This file is part of RandomX.
|
|
|
|
|
|
|
|
RandomX is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
RandomX is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with RandomX. If not, see<http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2018-12-15 22:13:17 +00:00
|
|
|
//#define TRACE
|
2019-02-22 16:48:26 +00:00
|
|
|
|
2019-03-17 22:09:11 +00:00
|
|
|
#include <climits>
|
2018-12-13 22:11:55 +00:00
|
|
|
#include "AssemblyGeneratorX86.hpp"
|
|
|
|
#include "common.hpp"
|
2019-02-22 16:48:26 +00:00
|
|
|
#include "reciprocal.h"
|
2019-02-09 14:45:26 +00:00
|
|
|
#include "Program.hpp"
|
2019-04-12 17:36:08 +00:00
|
|
|
#include "superscalarGenerator.hpp"
|
2018-12-13 22:11:55 +00:00
|
|
|
|
|
|
|
namespace RandomX {
|
|
|
|
|
2018-12-16 12:43:18 +00:00
|
|
|
static const char* regR[8] = { "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15" };
|
|
|
|
static const char* regR32[8] = { "r8d", "r9d", "r10d", "r11d", "r12d", "r13d", "r14d", "r15d" };
|
2019-01-24 18:29:59 +00:00
|
|
|
static const char* regFE[8] = { "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5", "xmm6", "xmm7" };
|
|
|
|
static const char* regF[4] = { "xmm0", "xmm1", "xmm2", "xmm3" };
|
|
|
|
static const char* regE[4] = { "xmm4", "xmm5", "xmm6", "xmm7" };
|
|
|
|
static const char* regA[4] = { "xmm8", "xmm9", "xmm10", "xmm11" };
|
|
|
|
|
2019-02-07 15:11:27 +00:00
|
|
|
static const char* fsumInstr[4] = { "paddb", "paddw", "paddd", "paddq" };
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
static const char* regA4 = "xmm12";
|
|
|
|
static const char* dblMin = "xmm13";
|
|
|
|
static const char* absMask = "xmm14";
|
|
|
|
static const char* signMask = "xmm15";
|
2019-01-08 13:50:31 +00:00
|
|
|
static const char* regMx = "rbp";
|
2019-01-24 18:29:59 +00:00
|
|
|
static const char* regIc = "rbx";
|
|
|
|
static const char* regIc32 = "ebx";
|
2019-01-08 13:50:31 +00:00
|
|
|
static const char* regIc8 = "bl";
|
2019-01-24 18:29:59 +00:00
|
|
|
static const char* regDatasetAddr = "rdi";
|
2019-01-04 18:44:15 +00:00
|
|
|
static const char* regScratchpadAddr = "rsi";
|
|
|
|
|
2019-04-07 13:38:51 +00:00
|
|
|
void AssemblyGeneratorX86::generateProgram(Program& prog) {
|
|
|
|
for (unsigned i = 0; i < 8; ++i) {
|
|
|
|
registerUsage[i] = -1;
|
|
|
|
}
|
|
|
|
asmCode.str(std::string()); //clear
|
|
|
|
for (unsigned i = 0; i < prog.getSize(); ++i) {
|
|
|
|
asmCode << "randomx_isn_" << i << ":" << std::endl;
|
|
|
|
Instruction& instr = prog(i);
|
|
|
|
instr.src %= RegistersCount;
|
|
|
|
instr.dst %= RegistersCount;
|
|
|
|
generateCode(instr, i);
|
|
|
|
//asmCode << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-12 17:36:08 +00:00
|
|
|
void AssemblyGeneratorX86::generateAsm(SuperscalarProgram& prog) {
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode.str(std::string()); //clear
|
|
|
|
asmCode << "ALIGN 16" << std::endl;
|
|
|
|
for (unsigned i = 0; i < prog.getSize(); ++i) {
|
|
|
|
Instruction& instr = prog(i);
|
|
|
|
switch (instr.opcode)
|
|
|
|
{
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::ISUB_R:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "sub " << regR[instr.dst] << ", " << regR[instr.src] << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IXOR_R:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "xor " << regR[instr.dst] << ", " << regR[instr.src] << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IADD_RS:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "lea " << regR[instr.dst] << ", [" << regR[instr.dst] << "+" << regR[instr.src] << "*" << (1 << (instr.mod % 4)) << "]" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IMUL_R:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "imul " << regR[instr.dst] << ", " << regR[instr.src] << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IROR_C:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "ror " << regR[instr.dst] << ", " << instr.getImm32() << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IADD_C7:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "add " << regR[instr.dst] << ", " << (int32_t)instr.getImm32() << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IXOR_C7:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "xor " << regR[instr.dst] << ", " << (int32_t)instr.getImm32() << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IADD_C8:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "add " << regR[instr.dst] << ", " << (int32_t)instr.getImm32() << std::endl;
|
|
|
|
asmCode << "nop" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IXOR_C8:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "xor " << regR[instr.dst] << ", " << (int32_t)instr.getImm32() << std::endl;
|
|
|
|
asmCode << "nop" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IADD_C9:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "add " << regR[instr.dst] << ", " << (int32_t)instr.getImm32() << std::endl;
|
|
|
|
asmCode << "xchg ax, ax ;nop" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IXOR_C9:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "xor " << regR[instr.dst] << ", " << (int32_t)instr.getImm32() << std::endl;
|
|
|
|
asmCode << "xchg ax, ax ;nop" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IMULH_R:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "mov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "mul " << regR[instr.src] << std::endl;
|
|
|
|
asmCode << "mov " << regR[instr.dst] << ", rdx" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::ISMULH_R:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "mov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "imul " << regR[instr.src] << std::endl;
|
|
|
|
asmCode << "mov " << regR[instr.dst] << ", rdx" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IMUL_RCP:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << "mov rax, " << (int64_t)reciprocal(instr.getImm32()) << std::endl;
|
|
|
|
asmCode << "imul " << regR[instr.dst] << ", rax" << std::endl;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
UNREACHABLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-12 17:36:08 +00:00
|
|
|
void AssemblyGeneratorX86::generateC(SuperscalarProgram& prog) {
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode.str(std::string()); //clear
|
|
|
|
asmCode << "#include <stdint.h>" << std::endl;
|
|
|
|
asmCode << "#if defined(__SIZEOF_INT128__)" << std::endl;
|
|
|
|
asmCode << " static inline uint64_t mulh(uint64_t a, uint64_t b) {" << std::endl;
|
|
|
|
asmCode << " return ((unsigned __int128)a * b) >> 64;" << std::endl;
|
|
|
|
asmCode << " }" << std::endl;
|
|
|
|
asmCode << " static inline int64_t smulh(int64_t a, int64_t b) {" << std::endl;
|
|
|
|
asmCode << " return ((__int128)a * b) >> 64;" << std::endl;
|
|
|
|
asmCode << " }" << std::endl;
|
|
|
|
asmCode << " #define HAVE_MULH" << std::endl;
|
|
|
|
asmCode << " #define HAVE_SMULH" << std::endl;
|
|
|
|
asmCode << "#endif" << std::endl;
|
|
|
|
asmCode << "#if defined(_MSC_VER)" << std::endl;
|
|
|
|
asmCode << " #define HAS_VALUE(X) X ## 0" << std::endl;
|
|
|
|
asmCode << " #define EVAL_DEFINE(X) HAS_VALUE(X)" << std::endl;
|
|
|
|
asmCode << " #include <intrin.h>" << std::endl;
|
|
|
|
asmCode << " #include <stdlib.h>" << std::endl;
|
|
|
|
asmCode << " static __inline uint64_t rotr(uint64_t x , int c) {" << std::endl;
|
|
|
|
asmCode << " return _rotr64(x, c);" << std::endl;
|
|
|
|
asmCode << " }" << std::endl;
|
|
|
|
asmCode << " #define HAVE_ROTR" << std::endl;
|
|
|
|
asmCode << " #if EVAL_DEFINE(__MACHINEARM64_X64(1))" << std::endl;
|
|
|
|
asmCode << " static __inline uint64_t mulh(uint64_t a, uint64_t b) {" << std::endl;
|
|
|
|
asmCode << " return __umulh(a, b);" << std::endl;
|
|
|
|
asmCode << " }" << std::endl;
|
|
|
|
asmCode << " #define HAVE_MULH" << std::endl;
|
|
|
|
asmCode << " #endif" << std::endl;
|
|
|
|
asmCode << " #if EVAL_DEFINE(__MACHINEX64(1))" << std::endl;
|
|
|
|
asmCode << " static __inline int64_t smulh(int64_t a, int64_t b) {" << std::endl;
|
|
|
|
asmCode << " int64_t hi;" << std::endl;
|
|
|
|
asmCode << " _mul128(a, b, &hi);" << std::endl;
|
|
|
|
asmCode << " return hi;" << std::endl;
|
|
|
|
asmCode << " }" << std::endl;
|
|
|
|
asmCode << " #define HAVE_SMULH" << std::endl;
|
|
|
|
asmCode << " #endif" << std::endl;
|
|
|
|
asmCode << "#endif" << std::endl;
|
|
|
|
asmCode << "#ifndef HAVE_ROTR" << std::endl;
|
|
|
|
asmCode << " static inline uint64_t rotr(uint64_t a, int b) {" << std::endl;
|
|
|
|
asmCode << " return (a >> b) | (a << (64 - b));" << std::endl;
|
|
|
|
asmCode << " }" << std::endl;
|
|
|
|
asmCode << " #define HAVE_ROTR" << std::endl;
|
|
|
|
asmCode << "#endif" << std::endl;
|
|
|
|
asmCode << "#if !defined(HAVE_MULH) || !defined(HAVE_SMULH) || !defined(HAVE_ROTR)" << std::endl;
|
|
|
|
asmCode << " #error \"Required functions are not defined\"" << std::endl;
|
|
|
|
asmCode << "#endif" << std::endl;
|
|
|
|
asmCode << "void superScalar(uint64_t r[8]) {" << std::endl;
|
|
|
|
asmCode << "uint64_t r8 = r[0], r9 = r[1], r10 = r[2], r11 = r[3], r12 = r[4], r13 = r[5], r14 = r[6], r15 = r[7];" << std::endl;
|
|
|
|
for (unsigned i = 0; i < prog.getSize(); ++i) {
|
|
|
|
Instruction& instr = prog(i);
|
|
|
|
switch (instr.opcode)
|
|
|
|
{
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::ISUB_R:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << regR[instr.dst] << " -= " << regR[instr.src] << ";" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IXOR_R:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << regR[instr.dst] << " ^= " << regR[instr.src] << ";" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IADD_RS:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << regR[instr.dst] << " += " << regR[instr.src] << "*" << (1 << (instr.mod % 4)) << ";" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IMUL_R:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << regR[instr.dst] << " *= " << regR[instr.src] << ";" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IROR_C:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << regR[instr.dst] << " = rotr(" << regR[instr.dst] << ", " << instr.getImm32() << ");" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IADD_C7:
|
|
|
|
case RandomX::SuperscalarInstructionType::IADD_C8:
|
|
|
|
case RandomX::SuperscalarInstructionType::IADD_C9:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << regR[instr.dst] << " += " << (int32_t)instr.getImm32() << ";" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IXOR_C7:
|
|
|
|
case RandomX::SuperscalarInstructionType::IXOR_C8:
|
|
|
|
case RandomX::SuperscalarInstructionType::IXOR_C9:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << regR[instr.dst] << " ^= " << (int32_t)instr.getImm32() << ";" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IMULH_R:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << regR[instr.dst] << " = mulh(" << regR[instr.dst] << ", " << regR[instr.src] << ");" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::ISMULH_R:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << regR[instr.dst] << " = smulh(" << regR[instr.dst] << ", " << regR[instr.src] << ");" << std::endl;
|
|
|
|
break;
|
2019-04-12 11:32:22 +00:00
|
|
|
case RandomX::SuperscalarInstructionType::IMUL_RCP:
|
2019-04-07 13:38:51 +00:00
|
|
|
asmCode << regR[instr.dst] << " *= " << (int64_t)reciprocal(instr.getImm32()) << ";" << std::endl;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
UNREACHABLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
asmCode << "r[0] = r8; r[1] = r9; r[2] = r10; r[3] = r11; r[4] = r12; r[5] = r13; r[6] = r14; r[7] = r15;" << std::endl;
|
|
|
|
asmCode << "}" << std::endl;
|
|
|
|
}
|
|
|
|
|
2019-03-17 22:09:11 +00:00
|
|
|
int AssemblyGeneratorX86::getConditionRegister() {
|
|
|
|
int min = INT_MAX;
|
|
|
|
int minIndex;
|
|
|
|
for (unsigned i = 0; i < 8; ++i) {
|
|
|
|
if (registerUsage[i] < min) {
|
|
|
|
min = registerUsage[i];
|
|
|
|
minIndex = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return minIndex;
|
|
|
|
}
|
|
|
|
|
2019-02-16 22:18:45 +00:00
|
|
|
void AssemblyGeneratorX86::traceint(Instruction& instr) {
|
|
|
|
if (trace) {
|
|
|
|
asmCode << "\tpush " << regR[instr.dst] << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AssemblyGeneratorX86::traceflt(Instruction& instr) {
|
|
|
|
if (trace) {
|
|
|
|
asmCode << "\tpush 0" << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AssemblyGeneratorX86::tracenop(Instruction& instr) {
|
|
|
|
if (trace) {
|
|
|
|
asmCode << "\tpush 0" << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-13 22:11:55 +00:00
|
|
|
void AssemblyGeneratorX86::generateCode(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
asmCode << "\t; " << instr;
|
2018-12-13 22:11:55 +00:00
|
|
|
auto generator = engine[instr.opcode];
|
|
|
|
(this->*generator)(instr, i);
|
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
void AssemblyGeneratorX86::genAddressReg(Instruction& instr, const char* reg = "eax") {
|
|
|
|
asmCode << "\tmov " << reg << ", " << regR32[instr.src] << std::endl;
|
2019-02-04 16:07:00 +00:00
|
|
|
asmCode << "\tand " << reg << ", " << ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask) << std::endl;
|
2019-01-24 18:29:59 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 09:52:30 +00:00
|
|
|
void AssemblyGeneratorX86::genAddressRegDst(Instruction& instr, int maskAlign = 8) {
|
|
|
|
asmCode << "\tmov eax" << ", " << regR32[instr.dst] << std::endl;
|
2019-02-04 16:07:00 +00:00
|
|
|
asmCode << "\tand eax" << ", " << ((instr.mod % 4) ? (ScratchpadL1Mask & (-maskAlign)) : (ScratchpadL2Mask & (-maskAlign))) << std::endl;
|
2019-01-27 09:52:30 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
int32_t AssemblyGeneratorX86::genAddressImm(Instruction& instr) {
|
2019-03-11 22:04:34 +00:00
|
|
|
return (int32_t)instr.getImm32() & ScratchpadL3Mask;
|
2019-01-24 18:29:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//1 uOP
|
2019-04-06 10:00:56 +00:00
|
|
|
void AssemblyGeneratorX86::h_IADD_RS(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-04-06 10:00:56 +00:00
|
|
|
if(instr.dst == 5)
|
|
|
|
asmCode << "\tlea " << regR[instr.dst] << ", [" << regR[instr.dst] << "+" << regR[instr.src] << "*" << (1 << (instr.mod % 4)) << std::showpos << (int32_t)instr.getImm32() << std::noshowpos << "]" << std::endl;
|
|
|
|
else
|
|
|
|
asmCode << "\tlea " << regR[instr.dst] << ", [" << regR[instr.dst] << "+" << regR[instr.src] << "*" << (1 << (instr.mod % 4)) << "]" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2019-01-11 15:53:52 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//2.75 uOP
|
|
|
|
void AssemblyGeneratorX86::h_IADD_M(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", qword ptr [rsi+rax]" << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", qword ptr [rsi+" << genAddressImm(instr) << "]" << std::endl;
|
|
|
|
}
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_IADD_RC(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-03-11 22:04:34 +00:00
|
|
|
asmCode << "\tlea " << regR[instr.dst] << ", [" << regR[instr.dst] << "+" << regR[instr.src] << std::showpos << (int32_t)instr.getImm32() << std::noshowpos << "]" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-31 18:06:45 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_ISUB_R(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
asmCode << "\tsub " << regR[instr.dst] << ", " << regR[instr.src] << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
2019-01-24 18:29:59 +00:00
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
asmCode << "\tsub " << regR[instr.dst] << ", " << (int32_t)instr.getImm32() << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//2.75 uOP
|
|
|
|
void AssemblyGeneratorX86::h_ISUB_M(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tsub " << regR[instr.dst] << ", qword ptr [rsi+rax]" << std::endl;
|
2019-01-11 15:53:52 +00:00
|
|
|
}
|
|
|
|
else {
|
2019-01-24 18:29:59 +00:00
|
|
|
asmCode << "\tsub " << regR[instr.dst] << ", qword ptr [rsi+" << genAddressImm(instr) << "]" << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_IMUL_9C(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-03-11 22:04:34 +00:00
|
|
|
asmCode << "\tlea " << regR[instr.dst] << ", [" << regR[instr.dst] << "+" << regR[instr.dst] << "*8" << std::showpos << (int32_t)instr.getImm32() << std::noshowpos << "]" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_IMUL_R(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
asmCode << "\timul " << regR[instr.dst] << ", " << regR[instr.src] << std::endl;
|
2019-01-18 22:51:18 +00:00
|
|
|
}
|
2019-01-24 18:29:59 +00:00
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
asmCode << "\timul " << regR[instr.dst] << ", " << (int32_t)instr.getImm32() << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//2.75 uOP
|
|
|
|
void AssemblyGeneratorX86::h_IMUL_M(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\timul " << regR[instr.dst] << ", qword ptr [rsi+rax]" << std::endl;
|
2018-12-15 22:13:17 +00:00
|
|
|
}
|
2019-01-24 18:29:59 +00:00
|
|
|
else {
|
|
|
|
asmCode << "\timul " << regR[instr.dst] << ", qword ptr [rsi+" << genAddressImm(instr) << "]" << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//4 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_IMULH_R(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-02-09 14:45:26 +00:00
|
|
|
asmCode << "\tmov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "\tmul " << regR[instr.src] << std::endl;
|
|
|
|
asmCode << "\tmov " << regR[instr.dst] << ", rdx" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//5.75 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_IMULH_M(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
genAddressReg(instr, "ecx");
|
|
|
|
asmCode << "\tmov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "\tmul qword ptr [rsi+rcx]" << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
asmCode << "\tmov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "\tmul qword ptr [rsi+" << genAddressImm(instr) << "]" << std::endl;
|
|
|
|
}
|
|
|
|
asmCode << "\tmov " << regR[instr.dst] << ", rdx" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//4 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_ISMULH_R(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-02-09 14:45:26 +00:00
|
|
|
asmCode << "\tmov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "\timul " << regR[instr.src] << std::endl;
|
|
|
|
asmCode << "\tmov " << regR[instr.dst] << ", rdx" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//5.75 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_ISMULH_M(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
genAddressReg(instr, "ecx");
|
|
|
|
asmCode << "\tmov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "\timul qword ptr [rsi+rcx]" << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
asmCode << "\tmov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "\timul qword ptr [rsi+" << genAddressImm(instr) << "]" << std::endl;
|
|
|
|
}
|
|
|
|
asmCode << "\tmov " << regR[instr.dst] << ", rdx" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_INEG_R(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
asmCode << "\tneg " << regR[instr.dst] << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_IXOR_R(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
asmCode << "\txor " << regR[instr.dst] << ", " << regR[instr.src] << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
asmCode << "\txor " << regR[instr.dst] << ", " << (int32_t)instr.getImm32() << std::endl;
|
2019-01-24 18:29:59 +00:00
|
|
|
}
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//2.75 uOP
|
|
|
|
void AssemblyGeneratorX86::h_IXOR_M(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\txor " << regR[instr.dst] << ", qword ptr [rsi+rax]" << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
asmCode << "\txor " << regR[instr.dst] << ", qword ptr [rsi+" << genAddressImm(instr) << "]" << std::endl;
|
|
|
|
}
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1.75 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_IROR_R(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
asmCode << "\tmov ecx, " << regR32[instr.src] << std::endl;
|
|
|
|
asmCode << "\tror " << regR[instr.dst] << ", cl" << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
asmCode << "\tror " << regR[instr.dst] << ", " << (instr.getImm32() & 63) << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1.75 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_IROL_R(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-01-24 18:29:59 +00:00
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
asmCode << "\tmov ecx, " << regR32[instr.src] << std::endl;
|
|
|
|
asmCode << "\trol " << regR[instr.dst] << ", cl" << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
asmCode << "\trol " << regR[instr.dst] << ", " << (instr.getImm32() & 63) << std::endl;
|
2019-01-24 18:29:59 +00:00
|
|
|
}
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-02-22 16:48:26 +00:00
|
|
|
//2 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_IMUL_RCP(Instruction& instr, int i) {
|
2019-03-11 22:04:34 +00:00
|
|
|
if (instr.getImm32() != 0) {
|
2019-03-17 22:09:11 +00:00
|
|
|
registerUsage[instr.dst] = i;
|
2019-03-11 22:04:34 +00:00
|
|
|
uint32_t divisor = instr.getImm32();
|
|
|
|
asmCode << "\tmov rax, " << reciprocal(instr.getImm32()) << std::endl;
|
2019-02-22 16:48:26 +00:00
|
|
|
asmCode << "\timul " << regR[instr.dst] << ", rax" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tracenop(instr);
|
|
|
|
}
|
2019-01-24 18:29:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//~8.5 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_ISDIV_C(Instruction& instr, int i) {
|
2019-02-22 16:48:26 +00:00
|
|
|
tracenop(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-02-04 16:07:00 +00:00
|
|
|
//2 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_ISWAP_R(Instruction& instr, int i) {
|
|
|
|
if (instr.src != instr.dst) {
|
2019-03-17 22:09:11 +00:00
|
|
|
//std::swap(registerUsage[instr.dst], registerUsage[instr.src]);
|
|
|
|
registerUsage[instr.dst] = i;
|
|
|
|
registerUsage[instr.src] = i;
|
2019-02-04 16:07:00 +00:00
|
|
|
asmCode << "\txchg " << regR[instr.dst] << ", " << regR[instr.src] << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tracenop(instr);
|
2019-02-04 16:07:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOPs
|
2019-02-05 22:43:57 +00:00
|
|
|
void AssemblyGeneratorX86::h_FSWAP_R(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
asmCode << "\tshufpd " << regFE[instr.dst] << ", " << regFE[instr.dst] << ", 1" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
2019-02-05 22:43:57 +00:00
|
|
|
void AssemblyGeneratorX86::h_FADD_R(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.dst %= 4;
|
|
|
|
instr.src %= 4;
|
|
|
|
asmCode << "\taddpd " << regF[instr.dst] << ", " << regA[instr.src] << std::endl;
|
2019-02-07 15:11:27 +00:00
|
|
|
//asmCode << "\t" << fsumInstr[instr.mod % 4] << " " << signMask << ", " << regF[instr.dst] << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//5 uOPs
|
2019-02-05 22:43:57 +00:00
|
|
|
void AssemblyGeneratorX86::h_FADD_M(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.dst %= 4;
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tcvtdq2pd xmm12, qword ptr [rsi+rax]" << std::endl;
|
|
|
|
asmCode << "\taddpd " << regF[instr.dst] << ", xmm12" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
2019-02-05 22:43:57 +00:00
|
|
|
void AssemblyGeneratorX86::h_FSUB_R(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.dst %= 4;
|
|
|
|
instr.src %= 4;
|
|
|
|
asmCode << "\tsubpd " << regF[instr.dst] << ", " << regA[instr.src] << std::endl;
|
2019-02-07 15:11:27 +00:00
|
|
|
//asmCode << "\t" << fsumInstr[instr.mod % 4] << " " << signMask << ", " << regF[instr.dst] << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//5 uOPs
|
2019-02-05 22:43:57 +00:00
|
|
|
void AssemblyGeneratorX86::h_FSUB_M(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.dst %= 4;
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tcvtdq2pd xmm12, qword ptr [rsi+rax]" << std::endl;
|
|
|
|
asmCode << "\tsubpd " << regF[instr.dst] << ", xmm12" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
2019-02-12 23:01:34 +00:00
|
|
|
void AssemblyGeneratorX86::h_FSCAL_R(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.dst %= 4;
|
2019-02-09 14:45:26 +00:00
|
|
|
asmCode << "\txorps " << regF[instr.dst] << ", " << signMask << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOPs
|
2019-02-05 22:43:57 +00:00
|
|
|
void AssemblyGeneratorX86::h_FMUL_R(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.dst %= 4;
|
|
|
|
instr.src %= 4;
|
|
|
|
asmCode << "\tmulpd " << regE[instr.dst] << ", " << regA[instr.src] << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-02-05 22:43:57 +00:00
|
|
|
//7 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_FMUL_M(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.dst %= 4;
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tcvtdq2pd xmm12, qword ptr [rsi+rax]" << std::endl;
|
2019-02-05 22:43:57 +00:00
|
|
|
asmCode << "\tandps xmm12, xmm14" << std::endl;
|
2019-01-24 18:29:59 +00:00
|
|
|
asmCode << "\tmulpd " << regE[instr.dst] << ", xmm12" << std::endl;
|
|
|
|
asmCode << "\tmaxpd " << regE[instr.dst] << ", " << dblMin << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//2 uOPs
|
2019-02-05 22:43:57 +00:00
|
|
|
void AssemblyGeneratorX86::h_FDIV_R(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.dst %= 4;
|
|
|
|
instr.src %= 4;
|
|
|
|
asmCode << "\tdivpd " << regE[instr.dst] << ", " << regA[instr.src] << std::endl;
|
|
|
|
asmCode << "\tmaxpd " << regE[instr.dst] << ", " << dblMin << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-02-05 22:43:57 +00:00
|
|
|
//7 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_FDIV_M(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.dst %= 4;
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tcvtdq2pd xmm12, qword ptr [rsi+rax]" << std::endl;
|
2019-02-24 16:24:06 +00:00
|
|
|
asmCode << "\tandps xmm12, xmm13" << std::endl;
|
|
|
|
asmCode << "\torps xmm12, xmm14" << std::endl;
|
2019-01-24 18:29:59 +00:00
|
|
|
asmCode << "\tdivpd " << regE[instr.dst] << ", xmm12" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
2019-02-05 22:43:57 +00:00
|
|
|
void AssemblyGeneratorX86::h_FSQRT_R(Instruction& instr, int i) {
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.dst %= 4;
|
|
|
|
asmCode << "\tsqrtpd " << regE[instr.dst] << ", " << regE[instr.dst] << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceflt(instr);
|
2019-01-24 18:29:59 +00:00
|
|
|
}
|
2018-12-13 22:11:55 +00:00
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//6 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_CFROUND(Instruction& instr, int i) {
|
2019-01-27 09:52:30 +00:00
|
|
|
asmCode << "\tmov rax, " << regR[instr.src] << std::endl;
|
2019-03-11 22:04:34 +00:00
|
|
|
int rotate = (13 - (instr.getImm32() & 63)) & 63;
|
2019-01-11 09:52:12 +00:00
|
|
|
if (rotate != 0)
|
|
|
|
asmCode << "\trol rax, " << rotate << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
asmCode << "\tand eax, 24576" << std::endl;
|
|
|
|
asmCode << "\tor eax, 40896" << std::endl;
|
2019-01-24 18:29:59 +00:00
|
|
|
asmCode << "\tmov dword ptr [rsp-8], eax" << std::endl;
|
|
|
|
asmCode << "\tldmxcsr dword ptr [rsp-8]" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
tracenop(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-02-15 09:41:02 +00:00
|
|
|
static inline const char* condition(Instruction& instr) {
|
|
|
|
switch ((instr.mod >> 2) & 7)
|
2018-12-21 21:41:35 +00:00
|
|
|
{
|
|
|
|
case 0:
|
2019-01-24 18:29:59 +00:00
|
|
|
return "be";
|
2018-12-21 21:41:35 +00:00
|
|
|
case 1:
|
2019-01-24 18:29:59 +00:00
|
|
|
return "a";
|
2018-12-21 21:41:35 +00:00
|
|
|
case 2:
|
2019-01-24 18:29:59 +00:00
|
|
|
return "s";
|
2018-12-21 21:41:35 +00:00
|
|
|
case 3:
|
2019-01-24 18:29:59 +00:00
|
|
|
return "ns";
|
2018-12-21 21:41:35 +00:00
|
|
|
case 4:
|
2019-01-24 18:29:59 +00:00
|
|
|
return "o";
|
2018-12-21 21:41:35 +00:00
|
|
|
case 5:
|
2019-01-24 18:29:59 +00:00
|
|
|
return "no";
|
2018-12-21 21:41:35 +00:00
|
|
|
case 6:
|
2019-01-24 18:29:59 +00:00
|
|
|
return "l";
|
2018-12-21 21:41:35 +00:00
|
|
|
case 7:
|
2019-01-24 18:29:59 +00:00
|
|
|
return "ge";
|
2019-02-09 18:32:53 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE;
|
2018-12-21 21:41:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-17 22:09:11 +00:00
|
|
|
void AssemblyGeneratorX86::handleCondition(Instruction& instr, int i) {
|
|
|
|
const int shift = (instr.mod >> 5);
|
|
|
|
const int conditionMask = ((1 << RANDOMX_CONDITION_BITS) - 1) << shift;
|
|
|
|
int reg = getConditionRegister();
|
|
|
|
int target = registerUsage[reg] + 1;
|
|
|
|
registerUsage[reg] = i;
|
|
|
|
asmCode << "\tadd " << regR[reg] << ", " << (1 << shift) << std::endl;
|
|
|
|
asmCode << "\ttest " << regR[reg] << ", " << conditionMask << std::endl;
|
|
|
|
asmCode << "\tjz randomx_isn_" << target << std::endl;
|
|
|
|
for (unsigned j = 0; j < 8; ++j) { //mark all registers as used
|
|
|
|
registerUsage[j] = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//4 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_COND_R(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
handleCondition(instr, i);
|
2019-04-01 17:04:08 +00:00
|
|
|
asmCode << "\txor rcx, rcx" << std::endl;
|
2019-03-11 22:04:34 +00:00
|
|
|
asmCode << "\tcmp " << regR32[instr.src] << ", " << (int32_t)instr.getImm32() << std::endl;
|
2019-01-24 18:29:59 +00:00
|
|
|
asmCode << "\tset" << condition(instr) << " cl" << std::endl;
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", rcx" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//6 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_COND_M(Instruction& instr, int i) {
|
2019-03-17 22:09:11 +00:00
|
|
|
handleCondition(instr, i);
|
2019-04-01 17:04:08 +00:00
|
|
|
asmCode << "\txor rcx, rcx" << std::endl;
|
2019-01-24 18:29:59 +00:00
|
|
|
genAddressReg(instr);
|
2019-03-11 22:04:34 +00:00
|
|
|
asmCode << "\tcmp dword ptr [rsi+rax], " << (int32_t)instr.getImm32() << std::endl;
|
2019-01-24 18:29:59 +00:00
|
|
|
asmCode << "\tset" << condition(instr) << " cl" << std::endl;
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", rcx" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
traceint(instr);
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 09:52:30 +00:00
|
|
|
//3 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_ISTORE(Instruction& instr, int i) {
|
|
|
|
genAddressRegDst(instr);
|
|
|
|
asmCode << "\tmov qword ptr [rsi+rax], " << regR[instr.src] << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
tracenop(instr);
|
2019-01-27 09:52:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//3 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_FSTORE(Instruction& instr, int i) {
|
|
|
|
genAddressRegDst(instr, 16);
|
|
|
|
asmCode << "\tmovapd xmmword ptr [rsi+rax], " << regFE[instr.src] << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
tracenop(instr);
|
2019-01-27 09:52:30 +00:00
|
|
|
}
|
|
|
|
|
2019-01-27 17:19:49 +00:00
|
|
|
void AssemblyGeneratorX86::h_NOP(Instruction& instr, int i) {
|
|
|
|
asmCode << "\tnop" << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
tracenop(instr);
|
2019-01-27 17:19:49 +00:00
|
|
|
}
|
|
|
|
|
2018-12-13 22:11:55 +00:00
|
|
|
#include "instructionWeights.hpp"
|
|
|
|
#define INST_HANDLE(x) REPN(&AssemblyGeneratorX86::h_##x, WT(x))
|
|
|
|
|
|
|
|
InstructionGenerator AssemblyGeneratorX86::engine[256] = {
|
2019-01-24 18:29:59 +00:00
|
|
|
//Integer
|
2019-04-06 10:00:56 +00:00
|
|
|
INST_HANDLE(IADD_RS)
|
2019-01-24 18:29:59 +00:00
|
|
|
INST_HANDLE(IADD_M)
|
|
|
|
INST_HANDLE(IADD_RC)
|
|
|
|
INST_HANDLE(ISUB_R)
|
|
|
|
INST_HANDLE(ISUB_M)
|
|
|
|
INST_HANDLE(IMUL_9C)
|
|
|
|
INST_HANDLE(IMUL_R)
|
|
|
|
INST_HANDLE(IMUL_M)
|
|
|
|
INST_HANDLE(IMULH_R)
|
|
|
|
INST_HANDLE(IMULH_M)
|
|
|
|
INST_HANDLE(ISMULH_R)
|
|
|
|
INST_HANDLE(ISMULH_M)
|
2019-02-22 16:48:26 +00:00
|
|
|
INST_HANDLE(IMUL_RCP)
|
2019-01-24 18:29:59 +00:00
|
|
|
INST_HANDLE(INEG_R)
|
|
|
|
INST_HANDLE(IXOR_R)
|
|
|
|
INST_HANDLE(IXOR_M)
|
|
|
|
INST_HANDLE(IROR_R)
|
|
|
|
INST_HANDLE(IROL_R)
|
2019-02-04 16:07:00 +00:00
|
|
|
INST_HANDLE(ISWAP_R)
|
2019-01-24 18:29:59 +00:00
|
|
|
|
|
|
|
//Common floating point
|
2019-02-05 22:43:57 +00:00
|
|
|
INST_HANDLE(FSWAP_R)
|
2019-01-24 18:29:59 +00:00
|
|
|
|
|
|
|
//Floating point group F
|
2019-02-05 22:43:57 +00:00
|
|
|
INST_HANDLE(FADD_R)
|
|
|
|
INST_HANDLE(FADD_M)
|
|
|
|
INST_HANDLE(FSUB_R)
|
|
|
|
INST_HANDLE(FSUB_M)
|
2019-02-12 23:01:34 +00:00
|
|
|
INST_HANDLE(FSCAL_R)
|
2019-01-24 18:29:59 +00:00
|
|
|
|
|
|
|
//Floating point group E
|
2019-02-05 22:43:57 +00:00
|
|
|
INST_HANDLE(FMUL_R)
|
|
|
|
INST_HANDLE(FDIV_M)
|
|
|
|
INST_HANDLE(FSQRT_R)
|
2019-01-24 18:29:59 +00:00
|
|
|
|
|
|
|
//Control
|
|
|
|
INST_HANDLE(COND_R)
|
|
|
|
INST_HANDLE(COND_M)
|
|
|
|
INST_HANDLE(CFROUND)
|
2019-01-27 09:52:30 +00:00
|
|
|
INST_HANDLE(ISTORE)
|
2019-01-27 17:19:49 +00:00
|
|
|
|
|
|
|
INST_HANDLE(NOP)
|
2018-12-13 22:11:55 +00:00
|
|
|
};
|
|
|
|
}
|