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-01-11 15:53:52 +00:00
|
|
|
#define MAGIC_DIVISION
|
2018-12-13 22:11:55 +00:00
|
|
|
#include "AssemblyGeneratorX86.hpp"
|
|
|
|
#include "Pcg32.hpp"
|
|
|
|
#include "common.hpp"
|
|
|
|
#include "instructions.hpp"
|
2019-01-11 13:08:21 +00:00
|
|
|
#ifdef MAGIC_DIVISION
|
|
|
|
#include "divideByConstantCodegen.h"
|
|
|
|
#endif
|
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" };
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
2018-12-13 22:11:55 +00:00
|
|
|
void AssemblyGeneratorX86::generateProgram(const void* seed) {
|
|
|
|
asmCode.str(std::string()); //clear
|
|
|
|
Pcg32 gen(seed);
|
|
|
|
for (unsigned i = 0; i < sizeof(RegisterFile) / sizeof(Pcg32::result_type); ++i) {
|
|
|
|
gen();
|
|
|
|
}
|
|
|
|
Instruction instr;
|
|
|
|
for (unsigned i = 0; i < ProgramLength; ++i) {
|
|
|
|
for (unsigned j = 0; j < sizeof(instr) / sizeof(Pcg32::result_type); ++j) {
|
|
|
|
*(((uint32_t*)&instr) + j) = gen();
|
|
|
|
}
|
2019-01-24 18:29:59 +00:00
|
|
|
instr.src %= RegistersCount;
|
|
|
|
instr.dst %= RegistersCount;
|
2018-12-13 22:11:55 +00:00
|
|
|
generateCode(instr, i);
|
2019-01-24 18:29:59 +00:00
|
|
|
//asmCode << 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-02-05 22:06:44 +00:00
|
|
|
return instr.imm32 & ScratchpadL3Mask;
|
2019-01-24 18:29:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_IADD_R(Instruction& instr, int i) {
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", " << regR[instr.src] << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
2019-01-11 15:53:52 +00:00
|
|
|
else {
|
2019-01-24 18:29:59 +00:00
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", " << instr.imm32 << std::endl;
|
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) {
|
|
|
|
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;
|
|
|
|
}
|
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) {
|
|
|
|
asmCode << "\tlea " << regR[instr.dst] << ", [" << regR[instr.dst] << "+" << regR[instr.src] << std::showpos << instr.imm32 << std::noshowpos << "]" << std::endl;
|
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) {
|
|
|
|
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 {
|
|
|
|
asmCode << "\tsub " << regR[instr.dst] << ", " << instr.imm32 << std::endl;
|
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) {
|
|
|
|
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-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_IMUL_9C(Instruction& instr, int i) {
|
|
|
|
asmCode << "\tlea " << regR[instr.dst] << ", [" << regR[instr.dst] << "+" << regR[instr.dst] << "*8" << std::showpos << instr.imm32 << std::noshowpos << "]" << std::endl;
|
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) {
|
|
|
|
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 {
|
|
|
|
asmCode << "\timul " << regR[instr.dst] << ", " << instr.imm32 << std::endl;
|
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) {
|
|
|
|
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-01-24 18:29:59 +00:00
|
|
|
//4 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_IMULH_R(Instruction& instr, int i) {
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
asmCode << "\tmov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "\tmul " << regR[instr.src] << std::endl;
|
|
|
|
asmCode << "\tmov " << regR[instr.dst] << ", rdx" << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
asmCode << "\tmov eax, " << instr.imm32 << std::endl;
|
|
|
|
asmCode << "\tmul " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", rdx" << std::endl;
|
|
|
|
}
|
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) {
|
|
|
|
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;
|
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) {
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
asmCode << "\tmov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "\timul " << regR[instr.src] << std::endl;
|
|
|
|
asmCode << "\tmov " << regR[instr.dst] << ", rdx" << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
asmCode << "\tmov rax, " << instr.imm32 << std::endl;
|
|
|
|
asmCode << "\timul " << regR[instr.dst] << std::endl;
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", rdx" << std::endl;
|
|
|
|
}
|
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) {
|
|
|
|
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;
|
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) {
|
|
|
|
asmCode << "\tneg " << regR[instr.dst] << std::endl;
|
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) {
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
asmCode << "\txor " << regR[instr.dst] << ", " << regR[instr.src] << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
asmCode << "\txor " << regR[instr.dst] << ", " << instr.imm32 << std::endl;
|
|
|
|
}
|
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) {
|
|
|
|
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;
|
|
|
|
}
|
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) {
|
|
|
|
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-01-24 18:29:59 +00:00
|
|
|
asmCode << "\tror " << regR[instr.dst] << ", " << (instr.imm32 & 63) << std::endl;
|
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) {
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
asmCode << "\tmov ecx, " << regR32[instr.src] << std::endl;
|
|
|
|
asmCode << "\trol " << regR[instr.dst] << ", cl" << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
asmCode << "\trol " << regR[instr.dst] << ", " << (instr.imm32 & 63) << std::endl;
|
|
|
|
}
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//~6 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_IDIV_C(Instruction& instr, int i) {
|
|
|
|
if (instr.imm32 != 0) {
|
|
|
|
uint32_t divisor = instr.imm32;
|
|
|
|
if (divisor & (divisor - 1)) {
|
|
|
|
magicu_info mi = compute_unsigned_magic_info(divisor, sizeof(uint64_t) * 8);
|
|
|
|
if (mi.pre_shift == 0 && !mi.increment) {
|
|
|
|
asmCode << "\tmov rax, " << mi.multiplier << std::endl;
|
|
|
|
asmCode << "\tmul " << regR[instr.dst] << std::endl;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
asmCode << "\tmov rax, " << regR[instr.dst] << std::endl;
|
2019-01-11 13:08:21 +00:00
|
|
|
if (mi.pre_shift > 0)
|
|
|
|
asmCode << "\tshr rax, " << mi.pre_shift << std::endl;
|
|
|
|
if (mi.increment) {
|
|
|
|
asmCode << "\tadd rax, 1" << std::endl;
|
|
|
|
asmCode << "\tsbb rax, 0" << std::endl;
|
|
|
|
}
|
|
|
|
asmCode << "\tmov rcx, " << mi.multiplier << std::endl;
|
|
|
|
asmCode << "\tmul rcx" << std::endl;
|
|
|
|
}
|
2019-01-24 18:29:59 +00:00
|
|
|
if (mi.post_shift > 0)
|
|
|
|
asmCode << "\tshr rdx, " << mi.post_shift << std::endl;
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", rdx" << std::endl;
|
2019-01-11 13:08:21 +00:00
|
|
|
}
|
2019-01-24 18:29:59 +00:00
|
|
|
else { //divisor is a power of two
|
2019-01-11 13:08:21 +00:00
|
|
|
int shift = 0;
|
2019-01-24 18:29:59 +00:00
|
|
|
while (divisor >>= 1)
|
2019-01-11 13:08:21 +00:00
|
|
|
++shift;
|
2019-01-24 18:29:59 +00:00
|
|
|
if(shift > 0)
|
|
|
|
asmCode << "\tshr " << regR[instr.dst] << ", " << shift << std::endl;
|
2019-01-11 15:53:52 +00:00
|
|
|
}
|
2019-01-24 18:29:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//~8.5 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_ISDIV_C(Instruction& instr, int i) {
|
|
|
|
int64_t divisor = instr.imm32;
|
|
|
|
if ((divisor & -divisor) == divisor || (divisor & -divisor) == -divisor) {
|
|
|
|
asmCode << "\tmov rax, " << regR[instr.dst] << std::endl;
|
|
|
|
// +/- power of two
|
|
|
|
bool negative = divisor < 0;
|
|
|
|
if (negative)
|
|
|
|
divisor = -divisor;
|
|
|
|
int shift = 0;
|
|
|
|
uint64_t unsignedDivisor = divisor;
|
|
|
|
while (unsignedDivisor >>= 1)
|
|
|
|
++shift;
|
|
|
|
if (shift > 0) {
|
|
|
|
asmCode << "\tmov rcx, rax" << std::endl;
|
|
|
|
asmCode << "\tsar rcx, 63" << std::endl;
|
|
|
|
uint32_t mask = (1ULL << shift) + 0xFFFFFFFF;
|
|
|
|
asmCode << "\tand ecx, 0" << std::hex << mask << std::dec << "h" << std::endl;
|
|
|
|
asmCode << "\tadd rax, rcx" << std::endl;
|
|
|
|
asmCode << "\tsar rax, " << shift << std::endl;
|
2019-01-11 13:08:21 +00:00
|
|
|
}
|
2019-01-24 18:29:59 +00:00
|
|
|
if (negative)
|
|
|
|
asmCode << "\tneg rax" << std::endl;
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", rax" << std::endl;
|
2019-01-11 13:08:21 +00:00
|
|
|
}
|
2019-01-24 18:29:59 +00:00
|
|
|
else if (divisor != 0) {
|
|
|
|
magics_info mi = compute_signed_magic_info(divisor);
|
|
|
|
asmCode << "\tmov rax, " << mi.multiplier << std::endl;
|
|
|
|
asmCode << "\timul " << regR[instr.dst] << std::endl;
|
|
|
|
//asmCode << "\tmov rax, rdx" << std::endl;
|
|
|
|
asmCode << "\txor eax, eax" << std::endl;
|
|
|
|
bool haveSF = false;
|
|
|
|
if (divisor > 0 && mi.multiplier < 0) {
|
|
|
|
asmCode << "\tadd rdx, " << regR[instr.dst] << std::endl;
|
|
|
|
haveSF = true;
|
|
|
|
}
|
|
|
|
if (divisor < 0 && mi.multiplier > 0) {
|
|
|
|
asmCode << "\tsub rdx, " << regR[instr.dst] << std::endl;
|
|
|
|
haveSF = true;
|
|
|
|
}
|
|
|
|
if (mi.shift > 0) {
|
|
|
|
asmCode << "\tsar rdx, " << mi.shift << std::endl;
|
|
|
|
haveSF = true;
|
|
|
|
}
|
|
|
|
if (!haveSF)
|
|
|
|
asmCode << "\ttest rdx, rdx" << std::endl;
|
|
|
|
asmCode << "\tsets al" << std::endl;
|
|
|
|
asmCode << "\tadd rdx, rax" << std::endl;
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", rdx" << std::endl;
|
2019-01-11 15:53:52 +00:00
|
|
|
}
|
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) {
|
|
|
|
asmCode << "\txchg " << regR[instr.dst] << ", " << regR[instr.src] << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_FPSWAP_R(Instruction& instr, int i) {
|
|
|
|
asmCode << "\tshufpd " << regFE[instr.dst] << ", " << regFE[instr.dst] << ", 1" << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_FPADD_R(Instruction& instr, int i) {
|
|
|
|
instr.dst %= 4;
|
|
|
|
instr.src %= 4;
|
|
|
|
asmCode << "\taddpd " << regF[instr.dst] << ", " << regA[instr.src] << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//5 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_FPADD_M(Instruction& instr, int i) {
|
|
|
|
instr.dst %= 4;
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tcvtdq2pd xmm12, qword ptr [rsi+rax]" << std::endl;
|
|
|
|
asmCode << "\taddpd " << regF[instr.dst] << ", xmm12" << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_FPSUB_R(Instruction& instr, int i) {
|
|
|
|
instr.dst %= 4;
|
|
|
|
instr.src %= 4;
|
|
|
|
asmCode << "\tsubpd " << regF[instr.dst] << ", " << regA[instr.src] << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//5 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_FPSUB_M(Instruction& instr, int i) {
|
|
|
|
instr.dst %= 4;
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tcvtdq2pd xmm12, qword ptr [rsi+rax]" << std::endl;
|
|
|
|
asmCode << "\tsubpd " << regF[instr.dst] << ", xmm12" << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_FPNEG_R(Instruction& instr, int i) {
|
|
|
|
instr.dst %= 4;
|
|
|
|
asmCode << "\txorps " << regF[instr.dst] << ", " << signMask << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_FPMUL_R(Instruction& instr, int i) {
|
|
|
|
instr.dst %= 4;
|
|
|
|
instr.src %= 4;
|
|
|
|
asmCode << "\tmulpd " << regE[instr.dst] << ", " << regA[instr.src] << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//6 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_FPMUL_M(Instruction& instr, int i) {
|
|
|
|
instr.dst %= 4;
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tcvtdq2pd xmm12, qword ptr [rsi+rax]" << std::endl;
|
|
|
|
asmCode << "\tmulpd " << regE[instr.dst] << ", xmm12" << std::endl;
|
|
|
|
asmCode << "\tmaxpd " << regE[instr.dst] << ", " << dblMin << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//2 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_FPDIV_R(Instruction& instr, int i) {
|
|
|
|
instr.dst %= 4;
|
|
|
|
instr.src %= 4;
|
|
|
|
asmCode << "\tdivpd " << regE[instr.dst] << ", " << regA[instr.src] << std::endl;
|
|
|
|
asmCode << "\tmaxpd " << regE[instr.dst] << ", " << dblMin << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//6 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_FPDIV_M(Instruction& instr, int i) {
|
|
|
|
instr.dst %= 4;
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tcvtdq2pd xmm12, qword ptr [rsi+rax]" << std::endl;
|
|
|
|
asmCode << "\tdivpd " << regE[instr.dst] << ", xmm12" << std::endl;
|
|
|
|
asmCode << "\tmaxpd " << regE[instr.dst] << ", " << dblMin << std::endl;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//1 uOP
|
|
|
|
void AssemblyGeneratorX86::h_FPSQRT_R(Instruction& instr, int i) {
|
|
|
|
instr.dst %= 4;
|
|
|
|
asmCode << "\tsqrtpd " << regE[instr.dst] << ", " << regE[instr.dst] << std::endl;
|
|
|
|
}
|
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-02-04 16:07:00 +00:00
|
|
|
int rotate = (13 - (instr.imm32 & 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;
|
2018-12-13 22:11:55 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
static inline const char* condition(Instruction& instr, bool invert = false) {
|
2019-02-04 16:07:00 +00:00
|
|
|
switch (((instr.mod >> 2) & 7) ^ invert)
|
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";
|
2018-12-21 21:41:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 18:29:59 +00:00
|
|
|
//4 uOPs
|
|
|
|
void AssemblyGeneratorX86::h_COND_R(Instruction& instr, int i) {
|
|
|
|
asmCode << "\txor ecx, ecx" << std::endl;
|
|
|
|
asmCode << "\tcmp " << regR32[instr.src] << ", " << instr.imm32 << std::endl;
|
|
|
|
asmCode << "\tset" << condition(instr) << " cl" << std::endl;
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", rcx" << std::endl;
|
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) {
|
|
|
|
asmCode << "\txor ecx, ecx" << std::endl;
|
|
|
|
genAddressReg(instr);
|
|
|
|
asmCode << "\tcmp dword ptr [rsi+rax], " << instr.imm32 << std::endl;
|
|
|
|
asmCode << "\tset" << condition(instr) << " cl" << std::endl;
|
|
|
|
asmCode << "\tadd " << regR[instr.dst] << ", rcx" << std::endl;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
//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-01-27 17:19:49 +00:00
|
|
|
void AssemblyGeneratorX86::h_NOP(Instruction& instr, int i) {
|
|
|
|
asmCode << "\tnop" << std::endl;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
INST_HANDLE(IADD_R)
|
|
|
|
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)
|
|
|
|
INST_HANDLE(IDIV_C)
|
|
|
|
INST_HANDLE(ISDIV_C)
|
|
|
|
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
|
|
|
|
INST_HANDLE(FPSWAP_R)
|
|
|
|
|
|
|
|
//Floating point group F
|
|
|
|
INST_HANDLE(FPADD_R)
|
|
|
|
INST_HANDLE(FPADD_M)
|
|
|
|
INST_HANDLE(FPSUB_R)
|
|
|
|
INST_HANDLE(FPSUB_M)
|
|
|
|
INST_HANDLE(FPNEG_R)
|
|
|
|
|
|
|
|
//Floating point group E
|
|
|
|
INST_HANDLE(FPMUL_R)
|
|
|
|
INST_HANDLE(FPMUL_M)
|
|
|
|
INST_HANDLE(FPDIV_R)
|
|
|
|
INST_HANDLE(FPDIV_M)
|
|
|
|
INST_HANDLE(FPSQRT_R)
|
|
|
|
|
|
|
|
//Control
|
|
|
|
INST_HANDLE(COND_R)
|
|
|
|
INST_HANDLE(COND_M)
|
|
|
|
INST_HANDLE(CFROUND)
|
2019-01-27 09:52:30 +00:00
|
|
|
|
|
|
|
INST_HANDLE(ISTORE)
|
|
|
|
INST_HANDLE(FSTORE)
|
2019-01-27 17:19:49 +00:00
|
|
|
|
|
|
|
INST_HANDLE(NOP)
|
2018-12-13 22:11:55 +00:00
|
|
|
};
|
|
|
|
}
|