| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- /*
- 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/>.
- */
- #include "Instruction.hpp"
- #include "common.hpp"
- namespace RandomX {
- void Instruction::print(std::ostream& os) const {
- os << names[opcode] << " ";
- auto handler = engine[opcode];
- (this->*handler)(os);
- }
- void Instruction::genAddressReg(std::ostream& os) const {
- os << ((alt % 4) ? "L1" : "L2") << "[r" << (int)src << "]";
- }
- void Instruction::genAddressImm(std::ostream& os) const {
- os << ((alt % 4) ? "L1" : "L2") << "[" << (imm32 & ((alt % 4) ? ScratchpadL1Mask : ScratchpadL2Mask)) << "]";
- }
- void Instruction::h_IADD_R(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", r" << (int)src << std::endl;
- }
- else {
- os << "r" << (int)dst << ", " << imm32 << std::endl;
- }
- }
- void Instruction::h_IADD_M(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", ";
- genAddressReg(os);
- os << std::endl;
- }
- else {
- os << "r" << (int)dst << ", ";
- genAddressImm(os);
- os << std::endl;
- }
- }
- void Instruction::h_IADD_RC(std::ostream& os) const {
- os << "r" << (int)dst << ", r" << (int)src << ", " << imm32 << std::endl;
- }
- //1 uOP
- void Instruction::h_ISUB_R(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", r" << (int)src << std::endl;
- }
- else {
- os << "r" << (int)dst << ", " << imm32 << std::endl;
- }
- }
- void Instruction::h_ISUB_M(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", ";
- genAddressReg(os);
- os << std::endl;
- }
- else {
- os << "r" << (int)dst << ", ";
- genAddressImm(os);
- os << std::endl;
- }
- }
- void Instruction::h_IMUL_9C(std::ostream& os) const {
- os << "r" << (int)dst << ", " << imm32 << std::endl;
- }
- void Instruction::h_IMUL_R(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", r" << (int)src << std::endl;
- }
- else {
- os << "r" << (int)dst << ", " << imm32 << std::endl;
- }
- }
- void Instruction::h_IMUL_M(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", ";
- genAddressReg(os);
- os << std::endl;
- }
- else {
- os << "r" << (int)dst << ", ";
- genAddressImm(os);
- os << std::endl;
- }
- }
- void Instruction::h_IMULH_R(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", r" << (int)src << std::endl;
- }
- else {
- os << "r" << (int)dst << ", " << imm32 << std::endl;
- }
- }
- void Instruction::h_IMULH_M(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", ";
- genAddressReg(os);
- os << std::endl;
- }
- else {
- os << "r" << (int)dst << ", ";
- genAddressImm(os);
- os << std::endl;
- }
- }
- void Instruction::h_ISMULH_R(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", r" << (int)src << std::endl;
- }
- else {
- os << "r" << (int)dst << ", " << imm32 << std::endl;
- }
- }
- void Instruction::h_ISMULH_M(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", ";
- genAddressReg(os);
- os << std::endl;
- }
- else {
- os << "r" << (int)dst << ", ";
- genAddressImm(os);
- os << std::endl;
- }
- }
- void Instruction::h_INEG_R(std::ostream& os) const {
- os << "r" << (int)dst << std::endl;
- }
- void Instruction::h_IXOR_R(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", r" << (int)src << std::endl;
- }
- else {
- os << "r" << (int)dst << ", " << imm32 << std::endl;
- }
- }
- void Instruction::h_IXOR_M(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", ";
- genAddressReg(os);
- os << std::endl;
- }
- else {
- os << "r" << (int)dst << ", ";
- genAddressImm(os);
- os << std::endl;
- }
- }
- void Instruction::h_IROR_R(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", r" << (int)src << std::endl;
- }
- else {
- os << "r" << (int)dst << ", " << (imm32 & 63) << std::endl;
- }
- }
- void Instruction::h_IROL_R(std::ostream& os) const {
- if (src != dst) {
- os << "r" << (int)dst << ", r" << (int)src << std::endl;
- }
- else {
- os << "r" << (int)dst << ", " << (imm32 & 63) << std::endl;
- }
- }
- void Instruction::h_IDIV_C(std::ostream& os) const {
- os << "r" << (int)dst << ", " << (uint32_t)imm32 << std::endl;
- }
- void Instruction::h_ISDIV_C(std::ostream& os) const {
- os << "r" << (int)dst << ", " << imm32 << std::endl;
- }
- void Instruction::h_FPSWAP_R(std::ostream& os) const {
- const char reg = (dst >= 4) ? 'e' : 'f';
- auto dstIndex = dst % 4;
- os << reg << dstIndex << std::endl;
- }
- void Instruction::h_FPADD_R(std::ostream& os) const {
- auto dstIndex = dst % 4;
- auto srcIndex = src % 4;
- os << "f" << dstIndex << ", a" << srcIndex << std::endl;
- }
- void Instruction::h_FPADD_M(std::ostream& os) const {
- auto dstIndex = dst % 4;
- os << "f" << dstIndex << ", ";
- genAddressReg(os);
- os << std::endl;
- }
- void Instruction::h_FPSUB_R(std::ostream& os) const {
- auto dstIndex = dst % 4;
- auto srcIndex = src % 4;
- os << "f" << dstIndex << ", a" << srcIndex << std::endl;
- }
- void Instruction::h_FPSUB_M(std::ostream& os) const {
- auto dstIndex = dst % 4;
- os << "f" << dstIndex << ", ";
- genAddressReg(os);
- os << std::endl;
- }
- void Instruction::h_FPNEG_R(std::ostream& os) const {
- auto dstIndex = dst % 4;
- os << "f" << dstIndex << std::endl;
- }
- void Instruction::h_FPMUL_R(std::ostream& os) const {
- auto dstIndex = dst % 4;
- auto srcIndex = src % 4;
- os << "e" << dstIndex << ", a" << srcIndex << std::endl;
- }
- void Instruction::h_FPMUL_M(std::ostream& os) const {
- auto dstIndex = dst % 4;
- os << "e" << dstIndex << ", ";
- genAddressReg(os);
- os << std::endl;
- }
- void Instruction::h_FPDIV_R(std::ostream& os) const {
- auto dstIndex = dst % 4;
- auto srcIndex = src % 4;
- os << "e" << dstIndex << ", a" << srcIndex << std::endl;
- }
- void Instruction::h_FPDIV_M(std::ostream& os) const {
- auto dstIndex = dst % 4;
- os << "e" << dstIndex << ", ";
- genAddressReg(os);
- os << std::endl;
- }
- void Instruction::h_FPSQRT_R(std::ostream& os) const {
- auto dstIndex = dst % 4;
- os << "e" << dstIndex << std::endl;
- }
- void Instruction::h_CFROUND(std::ostream& os) const {
- os << "r" << (int)dst << ", " << (alt & 63) << std::endl;
- }
- static inline const char* condition(int index) {
- switch (index)
- {
- case 0:
- return "be";
- case 1:
- return "ab";
- case 2:
- return "sg";
- case 3:
- return "ns";
- case 4:
- return "of";
- case 5:
- return "no";
- case 6:
- return "lt";
- case 7:
- return "ge";
- }
- }
- void Instruction::h_COND_R(std::ostream& os) const {
- os << "r" << (int)dst << ", " << condition((alt >> 2) & 7) << "(r" << (int)src << ", " << imm32 << ")" << std::endl;
- }
- void Instruction::h_COND_M(std::ostream& os) const {
- os << "r" << (int)dst << ", " << condition((alt >> 2) & 7) << "(";
- genAddressReg(os);
- os << ", " << imm32 << ")" << std::endl;
- }
- #include "instructionWeights.hpp"
- #define INST_NAME(x) REPN(#x, WT(x))
- #define INST_HANDLE(x) REPN(&Instruction::h_##x, WT(x))
- const char* Instruction::names[256] = {
- //Integer
- INST_NAME(IADD_R)
- INST_NAME(IADD_M)
- INST_NAME(IADD_RC)
- INST_NAME(ISUB_R)
- INST_NAME(ISUB_M)
- INST_NAME(IMUL_9C)
- INST_NAME(IMUL_R)
- INST_NAME(IMUL_M)
- INST_NAME(IMULH_R)
- INST_NAME(IMULH_M)
- INST_NAME(ISMULH_R)
- INST_NAME(ISMULH_M)
- INST_NAME(IDIV_C)
- INST_NAME(ISDIV_C)
- INST_NAME(INEG_R)
- INST_NAME(IXOR_R)
- INST_NAME(IXOR_M)
- INST_NAME(IROR_R)
- INST_NAME(IROL_R)
- //Common floating point
- INST_NAME(FPSWAP_R)
- //Floating point group F
- INST_NAME(FPADD_R)
- INST_NAME(FPADD_M)
- INST_NAME(FPSUB_R)
- INST_NAME(FPSUB_M)
- INST_NAME(FPNEG_R)
- //Floating point group E
- INST_NAME(FPMUL_R)
- INST_NAME(FPMUL_M)
- INST_NAME(FPDIV_R)
- INST_NAME(FPDIV_M)
- INST_NAME(FPSQRT_R)
- //Control
- INST_NAME(COND_R)
- INST_NAME(COND_M)
- INST_NAME(CFROUND)
- };
- InstructionVisualizer Instruction::engine[256] = {
- //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)
- //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)
- };
- }
|