2018-12-11 20:00:30 +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/>.
|
|
|
|
*/
|
|
|
|
//#define TRACE
|
|
|
|
//#define FPUCHECK
|
|
|
|
#include "InterpretedVirtualMachine.hpp"
|
2019-01-14 23:01:11 +00:00
|
|
|
#include "dataset.hpp"
|
|
|
|
#include "Cache.hpp"
|
|
|
|
#include "LightClientAsyncWorker.hpp"
|
2018-12-11 20:00:30 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <sstream>
|
|
|
|
#include <cmath>
|
2019-02-09 18:32:53 +00:00
|
|
|
#include <cfloat>
|
2019-01-14 23:01:11 +00:00
|
|
|
#include <thread>
|
2019-02-24 13:48:07 +00:00
|
|
|
#include <climits>
|
2019-02-04 16:07:00 +00:00
|
|
|
#include "intrinPortable.h"
|
2019-02-22 16:48:26 +00:00
|
|
|
#include "reciprocal.h"
|
2018-12-28 11:09:37 +00:00
|
|
|
#ifdef STATS
|
|
|
|
#include <algorithm>
|
|
|
|
#endif
|
2018-12-11 20:00:30 +00:00
|
|
|
|
|
|
|
#ifdef FPUCHECK
|
|
|
|
constexpr bool fpuCheck = true;
|
|
|
|
#else
|
|
|
|
constexpr bool fpuCheck = false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace RandomX {
|
|
|
|
|
2019-01-14 23:01:11 +00:00
|
|
|
InterpretedVirtualMachine::~InterpretedVirtualMachine() {
|
|
|
|
if (asyncWorker) {
|
|
|
|
delete mem.ds.asyncWorker;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-10 22:14:03 +00:00
|
|
|
void InterpretedVirtualMachine::setDataset(dataset_t ds, uint64_t size) {
|
2019-01-14 23:01:11 +00:00
|
|
|
if (asyncWorker) {
|
|
|
|
if (softAes) {
|
2019-03-10 22:14:03 +00:00
|
|
|
mem.ds.asyncWorker = new LightClientAsyncWorker(ds.cache);
|
2019-01-14 23:01:11 +00:00
|
|
|
}
|
|
|
|
else {
|
2019-03-10 22:14:03 +00:00
|
|
|
mem.ds.asyncWorker = new LightClientAsyncWorker(ds.cache);
|
2019-01-14 23:01:11 +00:00
|
|
|
}
|
|
|
|
readDataset = &datasetReadLightAsync;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mem.ds = ds;
|
2019-02-09 14:45:26 +00:00
|
|
|
readDataset = &datasetReadLight;
|
2019-01-14 23:01:11 +00:00
|
|
|
}
|
2019-03-10 22:14:03 +00:00
|
|
|
datasetRange = (size - RANDOMX_DATASET_SIZE + CacheLineSize) / CacheLineSize;
|
2019-01-14 23:01:11 +00:00
|
|
|
}
|
|
|
|
|
2019-02-09 14:45:26 +00:00
|
|
|
void InterpretedVirtualMachine::initialize() {
|
|
|
|
VirtualMachine::initialize();
|
2019-03-08 14:34:34 +00:00
|
|
|
for (unsigned i = 0; i < RANDOMX_PROGRAM_SIZE; ++i) {
|
2019-02-09 14:45:26 +00:00
|
|
|
program(i).src %= RegistersCount;
|
|
|
|
program(i).dst %= RegistersCount;
|
2019-01-14 23:01:11 +00:00
|
|
|
}
|
2019-02-09 14:45:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<int N>
|
|
|
|
void InterpretedVirtualMachine::executeBytecode(int_reg_t(&r)[8], __m128d (&f)[4], __m128d (&e)[4], __m128d (&a)[4]) {
|
|
|
|
executeBytecode(N, r, f, e, a);
|
|
|
|
executeBytecode<N + 1>(r, f, e, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2019-03-08 14:34:34 +00:00
|
|
|
void InterpretedVirtualMachine::executeBytecode<RANDOMX_PROGRAM_SIZE>(int_reg_t(&r)[8], __m128d (&f)[4], __m128d (&e)[4], __m128d (&a)[4]) {
|
2019-02-09 14:45:26 +00:00
|
|
|
}
|
|
|
|
|
2019-02-16 22:18:45 +00:00
|
|
|
static void print(int_reg_t r) {
|
|
|
|
std::cout << std::hex << std::setw(16) << std::setfill('0') << r << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print(__m128d f) {
|
|
|
|
uint64_t lo = *(((uint64_t*)&f) + 0);
|
|
|
|
uint64_t hi = *(((uint64_t*)&f) + 1);
|
|
|
|
std::cout << std::hex << std::setw(16) << std::setfill('0') << hi << '-' << std::hex << std::setw(16) << std::setfill('0') << lo << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void printState(int_reg_t(&r)[8], __m128d (&f)[4], __m128d (&e)[4], __m128d (&a)[4]) {
|
|
|
|
for (int i = 0; i < 8; ++i) {
|
|
|
|
std::cout << "r" << i << " = "; print(r[i]);
|
|
|
|
}
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
std::cout << "f" << i << " = "; print(f[i]);
|
|
|
|
}
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
std::cout << "e" << i << " = "; print(e[i]);
|
|
|
|
}
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
std::cout << "a" << i << " = "; print(a[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-24 13:48:07 +00:00
|
|
|
static bool isDenormal(double x) {
|
|
|
|
return std::fpclassify(x) == FP_SUBNORMAL;
|
|
|
|
}
|
|
|
|
|
2019-02-09 14:45:26 +00:00
|
|
|
FORCE_INLINE void InterpretedVirtualMachine::executeBytecode(int i, int_reg_t(&r)[8], __m128d (&f)[4], __m128d (&e)[4], __m128d (&a)[4]) {
|
|
|
|
auto& ibc = byteCode[i];
|
2019-02-24 13:48:07 +00:00
|
|
|
//if(trace) printState(r, f, e, a);
|
2019-02-09 14:45:26 +00:00
|
|
|
switch (ibc.type)
|
|
|
|
{
|
|
|
|
case InstructionType::IADD_R: {
|
|
|
|
*ibc.idst += *ibc.isrc;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::IADD_M: {
|
|
|
|
*ibc.idst += load64(scratchpad + (*ibc.isrc & ibc.memMask));
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::IADD_RC: {
|
|
|
|
*ibc.idst += *ibc.isrc + ibc.imm;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::ISUB_R: {
|
|
|
|
*ibc.idst -= *ibc.isrc;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::ISUB_M: {
|
|
|
|
*ibc.idst -= load64(scratchpad + (*ibc.isrc & ibc.memMask));
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::IMUL_9C: {
|
2019-02-16 22:18:45 +00:00
|
|
|
*ibc.idst += 8 * *ibc.idst + ibc.imm;
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
2019-02-22 16:48:26 +00:00
|
|
|
case InstructionType::IMUL_R: { //also handles IMUL_RCP
|
2019-02-09 14:45:26 +00:00
|
|
|
*ibc.idst *= *ibc.isrc;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::IMUL_M: {
|
|
|
|
*ibc.idst *= load64(scratchpad + (*ibc.isrc & ibc.memMask));
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::IMULH_R: {
|
|
|
|
*ibc.idst = mulh(*ibc.idst, *ibc.isrc);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::IMULH_M: {
|
|
|
|
*ibc.idst = mulh(*ibc.idst, load64(scratchpad + (*ibc.isrc & ibc.memMask)));
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::ISMULH_R: {
|
|
|
|
*ibc.idst = smulh(unsigned64ToSigned2sCompl(*ibc.idst), unsigned64ToSigned2sCompl(*ibc.isrc));
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::ISMULH_M: {
|
|
|
|
*ibc.idst = smulh(unsigned64ToSigned2sCompl(*ibc.idst), unsigned64ToSigned2sCompl(load64(scratchpad + (*ibc.isrc & ibc.memMask))));
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::INEG_R: {
|
|
|
|
*ibc.idst = ~(*ibc.idst) + 1; //two's complement negative
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::IXOR_R: {
|
|
|
|
*ibc.idst ^= *ibc.isrc;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::IXOR_M: {
|
|
|
|
*ibc.idst ^= load64(scratchpad + (*ibc.isrc & ibc.memMask));
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::IROR_R: {
|
|
|
|
*ibc.idst = rotr(*ibc.idst, *ibc.isrc & 63);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::IROL_R: {
|
|
|
|
*ibc.idst = rotl(*ibc.idst, *ibc.isrc & 63);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::ISWAP_R: {
|
|
|
|
int_reg_t temp = *ibc.isrc;
|
|
|
|
*ibc.isrc = *ibc.idst;
|
|
|
|
*ibc.idst = temp;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::FSWAP_R: {
|
|
|
|
*ibc.fdst = _mm_shuffle_pd(*ibc.fdst, *ibc.fdst, 1);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::FADD_R: {
|
|
|
|
*ibc.fdst = _mm_add_pd(*ibc.fdst, *ibc.fsrc);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::FADD_M: {
|
|
|
|
__m128d fsrc = load_cvt_i32x2(scratchpad + (*ibc.isrc & ibc.memMask));
|
|
|
|
*ibc.fdst = _mm_add_pd(*ibc.fdst, fsrc);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::FSUB_R: {
|
|
|
|
*ibc.fdst = _mm_sub_pd(*ibc.fdst, *ibc.fsrc);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::FSUB_M: {
|
|
|
|
__m128d fsrc = load_cvt_i32x2(scratchpad + (*ibc.isrc & ibc.memMask));
|
|
|
|
*ibc.fdst = _mm_sub_pd(*ibc.fdst, fsrc);
|
|
|
|
} break;
|
|
|
|
|
2019-02-12 23:01:34 +00:00
|
|
|
case InstructionType::FSCAL_R: {
|
2019-02-15 09:41:02 +00:00
|
|
|
const __m128d mask = _mm_castsi128_pd(_mm_set1_epi64x(0x81F0000000000000));
|
|
|
|
*ibc.fdst = _mm_xor_pd(*ibc.fdst, mask);
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::FMUL_R: {
|
|
|
|
*ibc.fdst = _mm_mul_pd(*ibc.fdst, *ibc.fsrc);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::FDIV_M: {
|
2019-02-24 13:48:07 +00:00
|
|
|
__m128d fsrc = ieee_set_exponent<-240>(load_cvt_i32x2(scratchpad + (*ibc.isrc & ibc.memMask)));
|
|
|
|
*ibc.fdst = _mm_div_pd(*ibc.fdst, fsrc);
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::FSQRT_R: {
|
|
|
|
*ibc.fdst = _mm_sqrt_pd(*ibc.fdst);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::COND_R: {
|
2019-02-16 22:18:45 +00:00
|
|
|
*ibc.idst += condition(ibc.condition, *ibc.isrc, ibc.imm) ? 1 : 0;
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::COND_M: {
|
2019-02-16 22:18:45 +00:00
|
|
|
*ibc.idst += condition(ibc.condition, load64(scratchpad + (*ibc.isrc & ibc.memMask)), ibc.imm) ? 1 : 0;
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::CFROUND: {
|
|
|
|
setRoundMode(rotr(*ibc.isrc, ibc.imm) % 4);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::ISTORE: {
|
|
|
|
store64(scratchpad + (*ibc.idst & ibc.memMask), *ibc.isrc);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case InstructionType::NOP: {
|
|
|
|
//nothing
|
|
|
|
} break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
UNREACHABLE;
|
2018-12-11 20:00:30 +00:00
|
|
|
}
|
2019-02-16 22:18:45 +00:00
|
|
|
if (trace) {
|
2019-02-18 21:09:20 +00:00
|
|
|
std::cout << program(i);
|
2019-02-16 22:18:45 +00:00
|
|
|
if(ibc.type < 20 || ibc.type == 31 || ibc.type == 32)
|
|
|
|
print(*ibc.idst);
|
|
|
|
else //if(ibc.type >= 20 && ibc.type <= 30)
|
|
|
|
print(0);
|
|
|
|
}
|
2019-02-24 13:48:07 +00:00
|
|
|
#ifdef FPUCHECK
|
|
|
|
if (ibc.type >= 26 && ibc.type <= 30) {
|
|
|
|
double lo = *(((double*)ibc.fdst) + 0);
|
|
|
|
double hi = *(((double*)ibc.fdst) + 1);
|
|
|
|
if (lo <= 0 || hi <= 0) {
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "Underflow in operation " << ibc.type;
|
|
|
|
printState(r, f, e, a);
|
|
|
|
throw std::runtime_error(ss.str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2018-12-11 20:00:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InterpretedVirtualMachine::execute() {
|
2019-02-09 14:45:26 +00:00
|
|
|
int_reg_t r[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
|
|
|
|
__m128d f[4];
|
|
|
|
__m128d e[4];
|
|
|
|
__m128d a[4];
|
|
|
|
|
|
|
|
a[0] = _mm_load_pd(®.a[0].lo);
|
|
|
|
a[1] = _mm_load_pd(®.a[1].lo);
|
|
|
|
a[2] = _mm_load_pd(®.a[2].lo);
|
|
|
|
a[3] = _mm_load_pd(®.a[3].lo);
|
|
|
|
|
|
|
|
precompileProgram(r, f, e, a);
|
|
|
|
|
|
|
|
uint32_t spAddr0 = mem.mx;
|
|
|
|
uint32_t spAddr1 = mem.ma;
|
|
|
|
|
2019-02-16 22:18:45 +00:00
|
|
|
if (trace) {
|
|
|
|
std::cout << "execute (reg: r" << readReg0 << ", r" << readReg1 << ", r" << readReg2 << ", r" << readReg3 << ")" << std::endl;
|
|
|
|
std::cout << "spAddr " << std::hex << std::setw(8) << std::setfill('0') << spAddr1 << " / " << std::setw(8) << std::setfill('0') << spAddr0 << std::endl;
|
|
|
|
std::cout << "ma/mx " << std::hex << std::setw(8) << std::setfill('0') << mem.ma << std::setw(8) << std::setfill('0') << mem.mx << std::endl;
|
|
|
|
printState(r, f, e, a);
|
|
|
|
}
|
|
|
|
|
2019-03-08 14:34:34 +00:00
|
|
|
for(unsigned ic = 0; ic < RANDOMX_PROGRAM_ITERATIONS; ++ic) {
|
2019-02-09 14:45:26 +00:00
|
|
|
//std::cout << "Iteration " << iter << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
uint64_t spMix = r[readReg0] ^ r[readReg1];
|
|
|
|
spAddr0 ^= spMix;
|
2019-02-09 14:45:26 +00:00
|
|
|
spAddr0 &= ScratchpadL3Mask64;
|
2019-02-16 22:18:45 +00:00
|
|
|
spAddr1 ^= spMix >> 32;
|
|
|
|
spAddr1 &= ScratchpadL3Mask64;
|
2019-02-09 14:45:26 +00:00
|
|
|
|
|
|
|
r[0] ^= load64(scratchpad + spAddr0 + 0);
|
|
|
|
r[1] ^= load64(scratchpad + spAddr0 + 8);
|
|
|
|
r[2] ^= load64(scratchpad + spAddr0 + 16);
|
|
|
|
r[3] ^= load64(scratchpad + spAddr0 + 24);
|
|
|
|
r[4] ^= load64(scratchpad + spAddr0 + 32);
|
|
|
|
r[5] ^= load64(scratchpad + spAddr0 + 40);
|
|
|
|
r[6] ^= load64(scratchpad + spAddr0 + 48);
|
|
|
|
r[7] ^= load64(scratchpad + spAddr0 + 56);
|
|
|
|
|
|
|
|
f[0] = load_cvt_i32x2(scratchpad + spAddr1 + 0);
|
|
|
|
f[1] = load_cvt_i32x2(scratchpad + spAddr1 + 8);
|
|
|
|
f[2] = load_cvt_i32x2(scratchpad + spAddr1 + 16);
|
|
|
|
f[3] = load_cvt_i32x2(scratchpad + spAddr1 + 24);
|
2019-02-24 13:48:07 +00:00
|
|
|
e[0] = ieee_set_exponent<-240>(load_cvt_i32x2(scratchpad + spAddr1 + 32));
|
|
|
|
e[1] = ieee_set_exponent<-240>(load_cvt_i32x2(scratchpad + spAddr1 + 40));
|
|
|
|
e[2] = ieee_set_exponent<-240>(load_cvt_i32x2(scratchpad + spAddr1 + 48));
|
|
|
|
e[3] = ieee_set_exponent<-240>(load_cvt_i32x2(scratchpad + spAddr1 + 56));
|
2019-02-09 14:45:26 +00:00
|
|
|
|
2019-02-16 22:18:45 +00:00
|
|
|
if (trace) {
|
2019-03-08 14:34:34 +00:00
|
|
|
std::cout << "iteration " << std::dec << ic << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
std::cout << "spAddr " << std::hex << std::setw(8) << std::setfill('0') << spAddr1 << " / " << std::setw(8) << std::setfill('0') << spAddr0 << std::endl;
|
|
|
|
std::cout << "ma/mx " << std::hex << std::setw(8) << std::setfill('0') << mem.ma << std::setw(8) << std::setfill('0') << mem.mx << std::endl;
|
|
|
|
printState(r, f, e, a);
|
|
|
|
std::cout << "-----------------------------------" << std::endl;
|
|
|
|
}
|
|
|
|
|
2019-02-09 14:45:26 +00:00
|
|
|
executeBytecode<0>(r, f, e, a);
|
|
|
|
|
|
|
|
if (asyncWorker) {
|
|
|
|
ILightClientAsyncWorker* aw = mem.ds.asyncWorker;
|
2019-03-10 22:14:03 +00:00
|
|
|
const uint64_t* datasetLine = aw->getBlock(datasetBase + mem.ma);
|
2019-02-09 14:45:26 +00:00
|
|
|
for (int i = 0; i < RegistersCount; ++i)
|
|
|
|
r[i] ^= datasetLine[i];
|
|
|
|
mem.mx ^= r[readReg2] ^ r[readReg3];
|
|
|
|
mem.mx &= CacheLineAlignMask; //align to cache line
|
|
|
|
std::swap(mem.mx, mem.ma);
|
2019-03-10 22:14:03 +00:00
|
|
|
aw->prepareBlock(datasetBase + mem.ma);
|
2019-02-09 14:45:26 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
mem.mx ^= r[readReg2] ^ r[readReg3];
|
2019-03-10 22:14:03 +00:00
|
|
|
//mem.mx &= CacheLineAlignMask;
|
|
|
|
Cache& cache = mem.ds.cache;
|
2019-02-09 14:45:26 +00:00
|
|
|
uint64_t datasetLine[CacheLineSize / sizeof(uint64_t)];
|
2019-03-10 22:14:03 +00:00
|
|
|
initBlock(cache, (uint8_t*)datasetLine, datasetBase + mem.ma / CacheLineSize);
|
2019-02-09 14:45:26 +00:00
|
|
|
for (int i = 0; i < RegistersCount; ++i)
|
|
|
|
r[i] ^= datasetLine[i];
|
|
|
|
std::swap(mem.mx, mem.ma);
|
2019-02-04 16:07:00 +00:00
|
|
|
}
|
2019-02-09 14:45:26 +00:00
|
|
|
|
2019-02-16 22:18:45 +00:00
|
|
|
if (trace) {
|
2019-03-08 14:34:34 +00:00
|
|
|
std::cout << "iteration " << std::dec << ic << std::endl;
|
2019-02-16 22:18:45 +00:00
|
|
|
std::cout << "spAddr " << std::hex << std::setw(8) << std::setfill('0') << spAddr1 << " / " << std::setw(8) << std::setfill('0') << spAddr0 << std::endl;
|
|
|
|
std::cout << "ma/mx " << std::hex << std::setw(8) << std::setfill('0') << mem.ma << std::setw(8) << std::setfill('0') << mem.mx << std::endl;
|
|
|
|
printState(r, f, e, a);
|
|
|
|
std::cout << "===================================" << std::endl;
|
|
|
|
}
|
|
|
|
|
2019-02-09 14:45:26 +00:00
|
|
|
store64(scratchpad + spAddr1 + 0, r[0]);
|
|
|
|
store64(scratchpad + spAddr1 + 8, r[1]);
|
|
|
|
store64(scratchpad + spAddr1 + 16, r[2]);
|
|
|
|
store64(scratchpad + spAddr1 + 24, r[3]);
|
|
|
|
store64(scratchpad + spAddr1 + 32, r[4]);
|
|
|
|
store64(scratchpad + spAddr1 + 40, r[5]);
|
|
|
|
store64(scratchpad + spAddr1 + 48, r[6]);
|
|
|
|
store64(scratchpad + spAddr1 + 56, r[7]);
|
|
|
|
|
2019-02-24 13:48:07 +00:00
|
|
|
f[0] = _mm_xor_pd(f[0], e[0]);
|
|
|
|
f[1] = _mm_xor_pd(f[1], e[1]);
|
|
|
|
f[2] = _mm_xor_pd(f[2], e[2]);
|
|
|
|
f[3] = _mm_xor_pd(f[3], e[3]);
|
|
|
|
|
|
|
|
#ifdef FPUCHECK
|
|
|
|
for(int i = 0; i < 4; ++i) {
|
|
|
|
double lo = *(((double*)&f[i]) + 0);
|
|
|
|
double hi = *(((double*)&f[i]) + 1);
|
|
|
|
if (isDenormal(lo) || isDenormal(hi)) {
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "Denormal f" << i;
|
|
|
|
throw std::runtime_error(ss.str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2019-02-16 22:18:45 +00:00
|
|
|
|
|
|
|
_mm_store_pd((double*)(scratchpad + spAddr0 + 0), f[0]);
|
|
|
|
_mm_store_pd((double*)(scratchpad + spAddr0 + 16), f[1]);
|
|
|
|
_mm_store_pd((double*)(scratchpad + spAddr0 + 32), f[2]);
|
|
|
|
_mm_store_pd((double*)(scratchpad + spAddr0 + 48), f[3]);
|
2019-02-09 14:45:26 +00:00
|
|
|
|
|
|
|
spAddr0 = 0;
|
|
|
|
spAddr1 = 0;
|
2018-12-11 20:00:30 +00:00
|
|
|
}
|
2019-02-04 16:07:00 +00:00
|
|
|
|
2019-02-09 14:45:26 +00:00
|
|
|
store64(®.r[0], r[0]);
|
|
|
|
store64(®.r[1], r[1]);
|
|
|
|
store64(®.r[2], r[2]);
|
|
|
|
store64(®.r[3], r[3]);
|
|
|
|
store64(®.r[4], r[4]);
|
|
|
|
store64(®.r[5], r[5]);
|
|
|
|
store64(®.r[6], r[6]);
|
|
|
|
store64(®.r[7], r[7]);
|
|
|
|
|
|
|
|
_mm_store_pd(®.f[0].lo, f[0]);
|
|
|
|
_mm_store_pd(®.f[1].lo, f[1]);
|
|
|
|
_mm_store_pd(®.f[2].lo, f[2]);
|
|
|
|
_mm_store_pd(®.f[3].lo, f[3]);
|
|
|
|
_mm_store_pd(®.e[0].lo, e[0]);
|
|
|
|
_mm_store_pd(®.e[1].lo, e[1]);
|
|
|
|
_mm_store_pd(®.e[2].lo, e[2]);
|
|
|
|
_mm_store_pd(®.e[3].lo, e[3]);
|
2018-12-11 20:00:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "instructionWeights.hpp"
|
2019-02-04 16:07:00 +00:00
|
|
|
|
2019-02-09 14:45:26 +00:00
|
|
|
void InterpretedVirtualMachine::precompileProgram(int_reg_t(&r)[8], __m128d (&f)[4], __m128d (&e)[4], __m128d (&a)[4]) {
|
2019-03-08 14:34:34 +00:00
|
|
|
for (unsigned i = 0; i < RANDOMX_PROGRAM_SIZE; ++i) {
|
2019-02-09 14:45:26 +00:00
|
|
|
auto& instr = program(i);
|
|
|
|
auto& ibc = byteCode[i];
|
|
|
|
switch (instr.opcode) {
|
|
|
|
CASE_REP(IADD_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IADD_R;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (src != dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = signExtend2sCompl(instr.getImm32());
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
}
|
|
|
|
} break;
|
2019-02-04 16:07:00 +00:00
|
|
|
|
2019-02-09 14:45:26 +00:00
|
|
|
CASE_REP(IADD_M) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IADD_M;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
ibc.memMask = ScratchpadL3Mask;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(IADD_RC) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IADD_RC;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
ibc.isrc = &r[src];
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = signExtend2sCompl(instr.getImm32());
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(ISUB_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::ISUB_R;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (src != dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = signExtend2sCompl(instr.getImm32());
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(ISUB_M) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::ISUB_M;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
ibc.memMask = ScratchpadL3Mask;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(IMUL_9C) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IMUL_9C;
|
|
|
|
ibc.idst = &r[dst];
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = signExtend2sCompl(instr.getImm32());
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(IMUL_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IMUL_R;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (src != dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = signExtend2sCompl(instr.getImm32());
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(IMUL_M) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IMUL_M;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
ibc.memMask = ScratchpadL3Mask;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(IMULH_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IMULH_R;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(IMULH_M) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IMULH_M;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
ibc.memMask = ScratchpadL3Mask;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(ISMULH_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::ISMULH_R;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(ISMULH_M) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::ISMULH_M;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
ibc.memMask = ScratchpadL3Mask;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
2019-02-22 16:48:26 +00:00
|
|
|
CASE_REP(IMUL_RCP) {
|
2019-03-11 22:04:34 +00:00
|
|
|
uint32_t divisor = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
if (divisor != 0) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
2019-02-22 16:48:26 +00:00
|
|
|
ibc.type = InstructionType::IMUL_R;
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.idst = &r[dst];
|
2019-02-22 16:48:26 +00:00
|
|
|
ibc.imm = reciprocal(divisor);
|
|
|
|
ibc.isrc = &ibc.imm;
|
2019-02-09 14:45:26 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
ibc.type = InstructionType::NOP;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(INEG_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
ibc.type = InstructionType::INEG_R;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(IXOR_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IXOR_R;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (src != dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = signExtend2sCompl(instr.getImm32());
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(IXOR_M) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IXOR_M;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (instr.src != instr.dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
ibc.memMask = ScratchpadL3Mask;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(IROR_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IROR_R;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (src != dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(IROL_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::IROL_R;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
if (src != dst) {
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
}
|
|
|
|
else {
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.isrc = &ibc.imm;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(ISWAP_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
if (src != dst) {
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.type = InstructionType::ISWAP_R;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ibc.type = InstructionType::NOP;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(FSWAP_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
ibc.type = InstructionType::FSWAP_R;
|
2019-02-18 21:09:20 +00:00
|
|
|
if (dst < 4)
|
|
|
|
ibc.fdst = &f[dst];
|
|
|
|
else
|
|
|
|
ibc.fdst = &e[dst - 4];
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(FADD_R) {
|
|
|
|
auto dst = instr.dst % 4;
|
|
|
|
auto src = instr.src % 4;
|
|
|
|
ibc.type = InstructionType::FADD_R;
|
|
|
|
ibc.fdst = &f[dst];
|
|
|
|
ibc.fsrc = &a[src];
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(FADD_M) {
|
|
|
|
auto dst = instr.dst % 4;
|
|
|
|
auto src = instr.src % 8;
|
|
|
|
ibc.type = InstructionType::FADD_M;
|
|
|
|
ibc.fdst = &f[dst];
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(FSUB_R) {
|
|
|
|
auto dst = instr.dst % 4;
|
|
|
|
auto src = instr.src % 4;
|
|
|
|
ibc.type = InstructionType::FSUB_R;
|
|
|
|
ibc.fdst = &f[dst];
|
|
|
|
ibc.fsrc = &a[src];
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(FSUB_M) {
|
|
|
|
auto dst = instr.dst % 4;
|
|
|
|
auto src = instr.src % 8;
|
|
|
|
ibc.type = InstructionType::FSUB_M;
|
|
|
|
ibc.fdst = &f[dst];
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
|
|
|
} break;
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2019-02-12 23:01:34 +00:00
|
|
|
CASE_REP(FSCAL_R) {
|
2019-02-09 14:45:26 +00:00
|
|
|
auto dst = instr.dst % 4;
|
|
|
|
ibc.fdst = &f[dst];
|
2019-02-12 23:01:34 +00:00
|
|
|
ibc.type = InstructionType::FSCAL_R;
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
2019-01-24 18:29:59 +00:00
|
|
|
|
2019-02-09 14:45:26 +00:00
|
|
|
CASE_REP(FMUL_R) {
|
|
|
|
auto dst = instr.dst % 4;
|
|
|
|
auto src = instr.src % 4;
|
|
|
|
ibc.type = InstructionType::FMUL_R;
|
|
|
|
ibc.fdst = &e[dst];
|
|
|
|
ibc.fsrc = &a[src];
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(FDIV_M) {
|
|
|
|
auto dst = instr.dst % 4;
|
|
|
|
auto src = instr.src % 8;
|
|
|
|
ibc.type = InstructionType::FDIV_M;
|
|
|
|
ibc.fdst = &e[dst];
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(FSQRT_R) {
|
|
|
|
auto dst = instr.dst % 4;
|
|
|
|
ibc.type = InstructionType::FSQRT_R;
|
|
|
|
ibc.fdst = &e[dst];
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(COND_R) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::COND_R;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.condition = (instr.mod >> 2) & 7;
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(COND_M) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::COND_M;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.condition = (instr.mod >> 2) & 7;
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32();
|
2019-02-09 14:45:26 +00:00
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(CFROUND) {
|
|
|
|
auto src = instr.src % 8;
|
|
|
|
ibc.isrc = &r[src];
|
|
|
|
ibc.type = InstructionType::CFROUND;
|
2019-03-11 22:04:34 +00:00
|
|
|
ibc.imm = instr.getImm32() & 63;
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(ISTORE) {
|
|
|
|
auto dst = instr.dst % RegistersCount;
|
|
|
|
auto src = instr.src % RegistersCount;
|
|
|
|
ibc.type = InstructionType::ISTORE;
|
|
|
|
ibc.idst = &r[dst];
|
|
|
|
ibc.isrc = &r[src];
|
2019-02-16 22:18:45 +00:00
|
|
|
ibc.memMask = ((instr.mod % 4) ? ScratchpadL1Mask : ScratchpadL2Mask);
|
2019-02-09 14:45:26 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
CASE_REP(NOP) {
|
|
|
|
ibc.type = InstructionType::NOP;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
UNREACHABLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-11 20:00:30 +00:00
|
|
|
}
|