2020-02-28 16:04:28 +00:00
|
|
|
/*
|
|
|
|
DingusPPC - The Experimental PowerPC Macintosh emulator
|
2021-10-23 19:00:31 +00:00
|
|
|
Copyright (C) 2018-21 divingkatae and maximum
|
2020-02-28 16:04:28 +00:00
|
|
|
(theweirdo) spatium
|
|
|
|
|
|
|
|
(Contact divingkatae#1017 or powermax#2286 on Discord for more info)
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-02-06 05:11:59 +00:00
|
|
|
/** @file Logic for the disassembler.
|
|
|
|
@author maximumspatium
|
|
|
|
*/
|
|
|
|
|
2020-02-06 14:17:40 +00:00
|
|
|
#define _CRT_SECURE_NO_WARNINGS /* shut up MSVC regarding the unsafe strcpy/strcat */
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
#include "ppcdisasm.h"
|
2020-02-07 01:02:50 +00:00
|
|
|
#include <cstring>
|
2020-02-06 14:17:40 +00:00
|
|
|
#include <functional> /* without this, MSVC doesn't understand std::function */
|
2020-05-12 18:55:45 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <string>
|
2020-01-22 11:28:42 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
template <typename... Args>
|
|
|
|
std::string my_sprintf(const char* format, Args... args) {
|
2020-01-22 11:28:42 +00:00
|
|
|
int length = std::snprintf(nullptr, 0, format, args...);
|
2020-01-22 11:28:42 +00:00
|
|
|
if (length <= 0)
|
|
|
|
return {}; /* empty string in C++11 */
|
|
|
|
|
|
|
|
char* buf = new char[length + 1];
|
|
|
|
std::snprintf(buf, length + 1, format, args...);
|
|
|
|
|
|
|
|
std::string str(buf);
|
|
|
|
delete[] buf;
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
const char* arith_im_mnem[9] = {"mulli", "subfic", "", "", "", "addic", "addic.", "addi", "addis"};
|
|
|
|
|
|
|
|
const char* bx_mnem[4] = {"b", "bl", "ba", "bla"};
|
|
|
|
|
|
|
|
const char* bclrx_mnem[2] = {"blr", "blrl"};
|
|
|
|
|
|
|
|
const char* bcctrx_mnem[2] = {"bctr", "bctrl"};
|
|
|
|
|
|
|
|
const char* br_cond[8] = {/* simplified branch conditions */
|
|
|
|
"ge",
|
|
|
|
"le",
|
|
|
|
"ne",
|
|
|
|
"ns",
|
|
|
|
"lt",
|
|
|
|
"gt",
|
|
|
|
"eq",
|
|
|
|
"so"};
|
|
|
|
|
|
|
|
const char* bclrx_cond[8] = {/* simplified branch conditions */
|
|
|
|
"gelr",
|
|
|
|
"lelr",
|
|
|
|
"nelr",
|
|
|
|
"nslr",
|
|
|
|
"ltlr",
|
|
|
|
"gtlr",
|
|
|
|
"eqlr",
|
|
|
|
"solr"};
|
|
|
|
|
|
|
|
const char* bcctrx_cond[8] = {/* simplified branch conditions */
|
|
|
|
"gectr",
|
|
|
|
"lectr",
|
|
|
|
"nectr",
|
|
|
|
"nsctr",
|
|
|
|
"ltctr",
|
|
|
|
"gtctr",
|
|
|
|
"eqctr",
|
|
|
|
"soctr"};
|
|
|
|
|
|
|
|
const char* opc_idx_ldst[32] = {/* indexed load/store opcodes */
|
|
|
|
"lwzx", "lwzux", "lbzx", "lbzux", "stwx", "stwux", "stbx",
|
|
|
|
"stbux", "lhzx", "lhzux", "lhax", "lhaux", "sthx", "sthux",
|
|
|
|
"", "", "lfsx", "lfsux", "lfdx", "lfdux", "stfsx",
|
|
|
|
"stfsux", "stfdx", "stfdux", "", "", "", "",
|
|
|
|
"", "", "stfiwx", ""};
|
|
|
|
|
|
|
|
const char* opc_bim_str[6] = {/* boolean immediate instructions */
|
|
|
|
"ori",
|
|
|
|
"oris",
|
|
|
|
"xori",
|
|
|
|
"xoris",
|
|
|
|
"andi.",
|
|
|
|
"andis."};
|
|
|
|
|
2023-08-16 19:04:45 +00:00
|
|
|
const char* opc_logic[16] = {/* logic instructions */
|
2020-05-12 18:55:45 +00:00
|
|
|
"and",
|
|
|
|
"andc",
|
|
|
|
"",
|
|
|
|
"nor",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"eqv",
|
|
|
|
"xor",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"orc",
|
|
|
|
"or",
|
|
|
|
"nand",
|
|
|
|
""};
|
|
|
|
|
|
|
|
const char* opc_subs[16] = {/* subtracts & friends */
|
|
|
|
"subfc",
|
|
|
|
"subf",
|
|
|
|
"",
|
|
|
|
"neg",
|
|
|
|
"subfe",
|
|
|
|
"",
|
|
|
|
"subfze",
|
|
|
|
"subfme",
|
|
|
|
"doz",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"abs",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"nabs"};
|
|
|
|
|
|
|
|
const char* opc_adds[9] = {/* additions */
|
|
|
|
"addc",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"adde",
|
|
|
|
"",
|
|
|
|
"addze",
|
|
|
|
"addme",
|
|
|
|
"add"};
|
|
|
|
|
|
|
|
const char* opc_muldivs[16] = {/* multiply and division instructions */
|
|
|
|
"mulhwu",
|
|
|
|
"",
|
|
|
|
"mulhw",
|
|
|
|
"mul",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"mullw",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"div",
|
|
|
|
"divs",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"divwu",
|
|
|
|
"divw"};
|
|
|
|
|
|
|
|
const char* opc_shft_reg[32]{
|
|
|
|
/* Regular shift instructions */
|
|
|
|
"slw", "", "", "", "slq", "sliq", "sllq", "slliq", "", "", "",
|
|
|
|
"", "", "", "", "", "srw", "", "", "", "srq", "sriq",
|
|
|
|
"srlq", "srliq", "sraw", "srawi", "", "", "sraq", "sraiq", "", ""};
|
|
|
|
|
|
|
|
|
|
|
|
const char* opc_shft_ext[32]{
|
|
|
|
/* Extended shift instructions (601 only) */
|
|
|
|
"", "", "", "", "sle", "", "sleq", "", "", "", "", "", "", "", "", "",
|
|
|
|
"rrib", "", "", "", "sre", "", "sreq", "", "", "", "", "", "srea", "", "", ""};
|
|
|
|
|
|
|
|
const char* opc_int_ldst[16] = {/* integer load and store instructions */
|
|
|
|
"lwz",
|
|
|
|
"lwzu",
|
|
|
|
"lbz",
|
|
|
|
"lbzu",
|
|
|
|
"stw",
|
|
|
|
"stwu",
|
|
|
|
"stb",
|
|
|
|
"stbu",
|
|
|
|
"lhz",
|
|
|
|
"lhzu",
|
|
|
|
"lha",
|
|
|
|
"lhau",
|
|
|
|
"sth",
|
|
|
|
"sthu",
|
|
|
|
"lmw",
|
|
|
|
"stmw"};
|
2020-01-29 02:29:10 +00:00
|
|
|
|
2020-02-13 03:06:26 +00:00
|
|
|
/* processor management + byte reversed load and store */
|
|
|
|
const char* proc_mgmt_str[32] = {
|
2020-05-12 18:55:45 +00:00
|
|
|
"", "dcbst", "dcbf", "", "stwcx.", "", "", "dcbtst", "dcbt", "eciwx", "",
|
|
|
|
"", "", "ecowx", "dcbi", "", "lwbrx", "tlbsync", "sync", "", "stwbrx", "",
|
|
|
|
"", "dcba", "lhbrx", "", "eieio", "", "sthbrx", "", "icbi", "dcbz"};
|
|
|
|
|
|
|
|
const char* opc_flt_ldst[8] = {/* integer load and store instructions */
|
|
|
|
"lfs",
|
|
|
|
"lfsu",
|
|
|
|
"lfd",
|
|
|
|
"lfdu",
|
|
|
|
"stfs",
|
|
|
|
"stfsu",
|
2021-01-23 22:10:08 +00:00
|
|
|
"stfd",
|
|
|
|
"stfdu"};
|
2020-05-12 18:55:45 +00:00
|
|
|
|
|
|
|
const char* opc_flt_ext_arith[32] = {
|
|
|
|
/* integer load and store instructions */
|
|
|
|
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
|
|
|
"", "", "", "", "", "", "", "fsel", "", "fmul", "", "", "fmsub", "fmadd", "fnmsub", "fnmadd",
|
2020-02-02 19:54:44 +00:00
|
|
|
};
|
2020-01-25 04:40:00 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
const char* trap_cond[32] = {/*Trap conditions*/
|
|
|
|
"", "twlgt", "twllt", "", "tweq", "twlge", "twlle", "",
|
|
|
|
"twgt", "", "", "", "twge", "", "", "",
|
|
|
|
"twlt", "", "", "", "twle", "", "", "",
|
|
|
|
"twne", "", "", "", "", "", "", ""};
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
const char* spr_index0[32] = {"mq", "xer", "", "", "rtcu", "rtcl", "", "",
|
|
|
|
"lr", "ctr", "", "", "", "", "", "",
|
|
|
|
"", "", "dsisr", "dar", "", "", "dec", "",
|
|
|
|
"", "sdr1", "srr0", "srr1", "", "", "", ""};
|
2020-02-15 20:10:01 +00:00
|
|
|
|
|
|
|
const char* spr_index8[32] = {
|
2020-05-12 18:55:45 +00:00
|
|
|
"", "", "", "", "", "", "", "", "", "", "",
|
|
|
|
"", "", "", "", "", "sprg0", "sprg1", "sprg2", "sprg3", "sprg4", "sprg5",
|
|
|
|
"sprg6", "sprg7", "", "", "ear", "", "tbl", "tbu", "", "pvr"};
|
2020-02-15 20:10:01 +00:00
|
|
|
|
|
|
|
const char* spr_index16[32] = {
|
2020-05-12 18:55:45 +00:00
|
|
|
"", "", "", "", "", "", "", "",
|
|
|
|
"", "", "", "", "", "", "", "",
|
2020-02-16 04:37:36 +00:00
|
|
|
"ibat0u", "ibat0l", "ibat1u", "ibat1l", "ibat2u", "ibat2l", "ibat3u", "ibat3l",
|
|
|
|
"dbat0u", "dbat0l", "dbat1u", "dbat1l", "dbat2u", "dbat2l", "dbat3u", "dbat3l",
|
|
|
|
};
|
|
|
|
|
|
|
|
const char* spr_index29[32] = {
|
2020-05-12 18:55:45 +00:00
|
|
|
"", "", "", "", "", "", "", "", "ummcr0", "upmc1", "upmc2",
|
|
|
|
"usia", "ummcr1", "upmc3", "upmc4", "", "", "", "", "", "", "",
|
|
|
|
"", "", "mmcr0", "pmc1", "pmc2", "sia", "mmcr1", "pmc3", "pmc4", "sda"};
|
2020-02-16 04:37:36 +00:00
|
|
|
|
|
|
|
const char* spr_index30[32] = {
|
2020-05-12 18:55:45 +00:00
|
|
|
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
|
|
|
"dmiss", "dcmp", "hash1", "hash2", "imiss", "icmp", "rpa", "", "", "", "", "", "", "", "", ""};
|
2020-02-16 04:37:36 +00:00
|
|
|
|
|
|
|
const char* spr_index31[32] = {
|
2020-05-12 18:55:45 +00:00
|
|
|
"", "", "", "", "", "", "", "", "", "", "",
|
|
|
|
"", "", "", "", "", "hid0", "hid1", "iabr", "", "", "dabr",
|
|
|
|
"", "", "", "l2cr", "", "ictc", "thrm1", "thrm2", "thrm3", "pir",
|
2020-02-15 20:10:01 +00:00
|
|
|
};
|
|
|
|
|
2020-01-22 11:28:42 +00:00
|
|
|
/** various formatting helpers. */
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_oneop(string& buf, const char* opc, int src) {
|
2020-01-25 22:24:08 +00:00
|
|
|
buf = my_sprintf("%-8sr%d", opc, src);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_twoop(string& buf, const char* opc, int dst, int src) {
|
2020-01-22 11:28:42 +00:00
|
|
|
buf = my_sprintf("%-8sr%d, r%d", opc, dst, src);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_twoop_simm(string& buf, const char* opc, int dst, int imm) {
|
2020-01-29 02:29:10 +00:00
|
|
|
buf = my_sprintf("%-8sr%d, %s0x%X", opc, dst, (imm < 0) ? "-" : "", abs(imm));
|
2020-01-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_twoop_fromspr(string& buf, const char* opc, int dst, int src) {
|
2020-02-06 05:33:49 +00:00
|
|
|
buf = my_sprintf("%-8sr%d, spr%d", opc, dst, src);
|
2020-01-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_twoop_tospr(string& buf, const char* opc, int dst, int src) {
|
2020-02-06 05:33:49 +00:00
|
|
|
buf = my_sprintf("%-8sspr%d, r%d", opc, dst, src);
|
2020-01-25 04:40:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_twoop_flt(string& buf, const char* opc, int dst, int src1) {
|
2020-02-14 04:04:14 +00:00
|
|
|
buf = my_sprintf("%-8sf%d, f%d", opc, dst, src1);
|
2020-02-06 05:11:59 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_threeop(string& buf, const char* opc, int dst, int src1, int src2) {
|
2020-01-22 11:28:42 +00:00
|
|
|
buf = my_sprintf("%-8sr%d, r%d, r%d", opc, dst, src1, src2);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_threeop_crb(string& buf, const char* opc, int dst, int src1, int src2) {
|
2020-01-29 02:29:10 +00:00
|
|
|
buf = my_sprintf("%-8scrb%d, crb%d, crb%d", opc, dst, src1, src2);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_threeop_uimm(string& buf, const char* opc, int dst, int src1, int imm) {
|
2020-02-15 18:29:03 +00:00
|
|
|
buf = my_sprintf("%-8sr%d, r%d, 0x%X", opc, dst, src1, imm);
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_threeop_simm(string& buf, const char* opc, int dst, int src1, int imm) {
|
|
|
|
buf = my_sprintf("%-8sr%d, r%d, %s0x%X", opc, dst, src1, (imm < 0) ? "-" : "", abs(imm));
|
2020-01-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_threeop_flt(string& buf, const char* opc, int dst, int src1, int src2) {
|
2020-02-14 04:04:14 +00:00
|
|
|
buf = my_sprintf("%-8sf%d, f%d, f%d", opc, dst, src1, src2);
|
2020-02-06 05:11:59 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_fourop_flt(string& buf, const char* opc, int dst, int src1, int src2, int src3) {
|
2020-02-14 04:04:14 +00:00
|
|
|
buf = my_sprintf("%-8sf%d, f%d, f%d, f%d", opc, dst, src1, src2, src3);
|
2020-02-06 05:11:59 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_rotateop(string& buf, const char* opc, int dst, int src, int sh, int mb, int me, bool imm) {
|
2020-01-25 22:24:08 +00:00
|
|
|
if (imm)
|
2020-02-13 03:06:26 +00:00
|
|
|
buf = my_sprintf("%-8sr%d, r%d, %d, %d, %d", opc, dst, src, sh, mb, me);
|
2020-01-25 22:24:08 +00:00
|
|
|
else
|
2020-02-13 03:06:26 +00:00
|
|
|
buf = my_sprintf("%-8sr%d, r%d, r%d, %d, %d", opc, dst, src, sh, mb, me);
|
2020-01-25 04:40:00 +00:00
|
|
|
}
|
|
|
|
|
2020-02-18 03:17:56 +00:00
|
|
|
/* Opcodes */
|
2020-01-29 02:29:10 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_illegal(PPCDisasmContext* ctx) {
|
2020-01-22 11:28:42 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s0x%08X", "dc.l", ctx->instr_code);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_twi(PPCDisasmContext* ctx) {
|
2020-02-13 02:31:54 +00:00
|
|
|
char opcode[10] = "";
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
auto to = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
2020-02-06 05:11:59 +00:00
|
|
|
int32_t imm = SIGNEXT(ctx->instr_code & 0xFFFF, 15);
|
|
|
|
|
|
|
|
if (ctx->simplified) {
|
2020-02-13 03:41:23 +00:00
|
|
|
strcpy(opcode, trap_cond[to]);
|
|
|
|
|
2020-02-13 05:21:16 +00:00
|
|
|
if (strlen(opcode) > 0) {
|
2020-02-13 03:41:23 +00:00
|
|
|
strcat(opcode, "i");
|
2020-02-15 18:29:03 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, 0x%X", opcode, ra, imm);
|
2020-02-13 05:21:16 +00:00
|
|
|
return;
|
2020-02-13 03:41:23 +00:00
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
}
|
2020-02-15 18:29:03 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%d, r%d, 0x%X", "twi", to, ra, imm);
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_group4(PPCDisasmContext* ctx) {
|
2020-01-22 11:28:42 +00:00
|
|
|
printf("Altivec group 4 not supported yet\n");
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_ar_im(PPCDisasmContext* ctx) {
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
auto rd = (ctx->instr_code >> 21) & 0x1F;
|
2020-01-29 02:29:10 +00:00
|
|
|
int32_t imm = SIGNEXT(ctx->instr_code & 0xFFFF, 15);
|
|
|
|
|
2020-02-07 03:26:45 +00:00
|
|
|
if (ctx->simplified) {
|
2021-01-24 04:30:29 +00:00
|
|
|
if (((ctx->instr_code >> 26) == 0xE) && !ra) {
|
2020-02-07 03:26:45 +00:00
|
|
|
fmt_twoop_simm(ctx->instr_str, "li", rd, imm);
|
|
|
|
return;
|
2021-01-24 04:30:29 +00:00
|
|
|
} else if (((ctx->instr_code >> 26) == 0xF) && !ra) {
|
2020-02-07 03:26:45 +00:00
|
|
|
fmt_twoop_simm(ctx->instr_str, "lis", rd, imm);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (imm > 0x7FFF) {
|
|
|
|
switch ((ctx->instr_code >> 26)) {
|
|
|
|
case 0xC:
|
|
|
|
fmt_threeop_simm(ctx->instr_str, "subic", rd, ra, imm);
|
|
|
|
return;
|
|
|
|
case 0xD:
|
|
|
|
fmt_threeop_simm(ctx->instr_str, "subic.", rd, ra, imm);
|
|
|
|
return;
|
|
|
|
case 0xE:
|
|
|
|
fmt_threeop_simm(ctx->instr_str, "subi", rd, ra, imm);
|
|
|
|
return;
|
|
|
|
case 0xF:
|
|
|
|
fmt_threeop_simm(ctx->instr_str, "subis", rd, ra, imm);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
2020-02-07 03:26:45 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
fmt_threeop_simm(ctx->instr_str, arith_im_mnem[(ctx->instr_code >> 26) - 7], rd, ra, imm);
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void power_dozi(PPCDisasmContext* ctx) {
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
auto rd = (ctx->instr_code >> 21) & 0x1F;
|
2020-01-29 02:29:10 +00:00
|
|
|
auto imm = ctx->instr_code & 0xFFFF;
|
|
|
|
|
|
|
|
fmt_threeop_simm(ctx->instr_str, "dozi", rd, ra, imm);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_rot_imm(PPCDisasmContext* ctx, const char* opc, int ra, int rs, int n) {
|
2020-02-16 22:00:58 +00:00
|
|
|
char opcode[10];
|
|
|
|
|
|
|
|
strcpy(opcode, opc);
|
|
|
|
if (ctx->instr_code & 1)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, r%d, %d", opcode, ra, rs, n);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void fmt_rot_2imm(PPCDisasmContext* ctx, const char* opc, int ra, int rs, int n, int b) {
|
2020-02-16 22:00:58 +00:00
|
|
|
char opcode[10];
|
|
|
|
|
|
|
|
strcpy(opcode, opc);
|
|
|
|
if (ctx->instr_code & 1)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, r%d, %d, %d", opcode, ra, rs, n, b);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_rlwimi(PPCDisasmContext* ctx) {
|
2020-02-15 21:48:21 +00:00
|
|
|
char opcode[10];
|
2020-01-25 22:24:08 +00:00
|
|
|
auto rs = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
auto sh = (ctx->instr_code >> 11) & 0x1F;
|
|
|
|
auto mb = (ctx->instr_code >> 6) & 0x1F;
|
|
|
|
auto me = (ctx->instr_code >> 1) & 0x1F;
|
|
|
|
|
2020-02-15 21:48:21 +00:00
|
|
|
if (ctx->simplified) {
|
2020-02-16 22:00:58 +00:00
|
|
|
if ((32 - sh) == mb) {
|
|
|
|
fmt_rot_2imm(ctx, "inslwi", ra, rs, me + 1 - mb, mb);
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (sh == 32 - (me + 1)) {
|
2020-02-16 22:00:58 +00:00
|
|
|
fmt_rot_2imm(ctx, "insrwi", ra, rs, (me - mb + 1), mb);
|
|
|
|
return;
|
2020-02-15 21:48:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(opcode, "rlwimi");
|
2020-01-25 22:24:08 +00:00
|
|
|
if (ctx->instr_code & 1)
|
2020-02-15 21:48:21 +00:00
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
fmt_rotateop(ctx->instr_str, opcode, ra, rs, sh, mb, me, true);
|
2020-01-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_rlwinm(PPCDisasmContext* ctx) {
|
2020-02-15 21:48:21 +00:00
|
|
|
char opcode[10];
|
2020-01-25 22:24:08 +00:00
|
|
|
auto rs = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
auto sh = (ctx->instr_code >> 11) & 0x1F;
|
|
|
|
auto mb = (ctx->instr_code >> 6) & 0x1F;
|
|
|
|
auto me = (ctx->instr_code >> 1) & 0x1F;
|
|
|
|
|
2020-02-10 03:41:05 +00:00
|
|
|
if (ctx->simplified) {
|
2020-02-16 22:00:58 +00:00
|
|
|
if ((mb == 0) && (me == 31)) {
|
|
|
|
if (sh < 16) {
|
|
|
|
fmt_rot_imm(ctx, "rotlwi", ra, rs, sh);
|
|
|
|
} else {
|
|
|
|
fmt_rot_imm(ctx, "rotrwi", ra, rs, 32 - sh);
|
2020-02-10 03:41:05 +00:00
|
|
|
}
|
2020-02-16 22:00:58 +00:00
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (me == 31) {
|
2020-02-18 03:17:56 +00:00
|
|
|
if ((32 - sh) == mb) {
|
2020-02-16 22:00:58 +00:00
|
|
|
fmt_rot_imm(ctx, "srwi", ra, rs, mb);
|
|
|
|
} else if (sh == 0) {
|
|
|
|
fmt_rot_imm(ctx, "clrlwi", ra, rs, mb);
|
|
|
|
} else {
|
|
|
|
fmt_rot_2imm(ctx, "extrwi", ra, rs, (32 - mb), (sh - (32 - mb)));
|
2020-02-18 03:17:56 +00:00
|
|
|
}
|
2020-02-16 22:00:58 +00:00
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (mb == 0) {
|
2020-02-18 03:17:56 +00:00
|
|
|
if ((31 - me) == sh) {
|
2020-02-16 22:00:58 +00:00
|
|
|
fmt_rot_imm(ctx, "slwi", ra, rs, sh);
|
|
|
|
} else if (sh == 0) {
|
|
|
|
fmt_rot_imm(ctx, "clrrwi", ra, rs, (31 - me));
|
|
|
|
} else {
|
|
|
|
fmt_rot_2imm(ctx, "extlwi", ra, rs, (me + 1), sh);
|
2020-02-18 03:17:56 +00:00
|
|
|
}
|
2020-02-16 22:00:58 +00:00
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (mb) {
|
2020-02-18 03:17:56 +00:00
|
|
|
if ((31 - me) == sh) {
|
2020-02-16 22:00:58 +00:00
|
|
|
fmt_rot_2imm(ctx, "clrlslwi", ra, rs, (mb + sh), sh);
|
2020-02-18 03:17:56 +00:00
|
|
|
return;
|
2020-02-17 05:19:28 +00:00
|
|
|
}
|
2020-02-15 21:48:21 +00:00
|
|
|
}
|
2020-02-10 03:41:05 +00:00
|
|
|
}
|
2020-02-13 03:06:26 +00:00
|
|
|
|
2020-02-15 21:48:21 +00:00
|
|
|
strcpy(opcode, "rlwinm");
|
2020-01-25 22:24:08 +00:00
|
|
|
if (ctx->instr_code & 1)
|
2020-02-15 21:48:21 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-16 22:00:58 +00:00
|
|
|
|
2020-02-17 05:19:28 +00:00
|
|
|
fmt_rotateop(ctx->instr_str, opcode, ra, rs, sh, mb, me, true);
|
2020-01-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_rlmi(PPCDisasmContext* ctx) {
|
2020-02-13 02:31:54 +00:00
|
|
|
auto rs = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
2020-02-15 18:29:03 +00:00
|
|
|
auto rb = (ctx->instr_code >> 11) & 0x1F;
|
2020-02-13 02:31:54 +00:00
|
|
|
auto mb = (ctx->instr_code >> 6) & 0x1F;
|
|
|
|
auto me = (ctx->instr_code >> 1) & 0x1F;
|
|
|
|
|
|
|
|
if (ctx->instr_code & 1)
|
2020-02-15 18:29:03 +00:00
|
|
|
fmt_rotateop(ctx->instr_str, "rlmi.", ra, rs, rb, mb, me, false);
|
2020-02-13 02:31:54 +00:00
|
|
|
else
|
2020-02-15 18:29:03 +00:00
|
|
|
fmt_rotateop(ctx->instr_str, "rlmi", ra, rs, rb, mb, me, false);
|
2020-02-13 02:31:54 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_rlwnm(PPCDisasmContext* ctx) {
|
2020-02-15 21:48:21 +00:00
|
|
|
char opcode[10];
|
2020-01-25 22:24:08 +00:00
|
|
|
auto rs = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
auto rb = (ctx->instr_code >> 11) & 0x1F;
|
|
|
|
auto mb = (ctx->instr_code >> 6) & 0x1F;
|
|
|
|
auto me = (ctx->instr_code >> 1) & 0x1F;
|
|
|
|
|
2020-02-07 03:26:45 +00:00
|
|
|
if (ctx->simplified) {
|
2020-02-16 22:00:58 +00:00
|
|
|
if ((me == 31) && (mb == 0)) {
|
2020-02-15 21:48:21 +00:00
|
|
|
strcpy(opcode, "rotlw");
|
|
|
|
|
|
|
|
if (ctx->instr_code & 1)
|
|
|
|
strcat(opcode, ".");
|
2020-02-16 22:00:58 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
fmt_threeop(ctx->instr_str, opcode, ra, rs, rb);
|
|
|
|
return;
|
2020-02-07 03:26:45 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-15 21:48:21 +00:00
|
|
|
strcpy(opcode, "rlwnm");
|
2020-01-25 22:24:08 +00:00
|
|
|
if (ctx->instr_code & 1)
|
2020-02-15 21:48:21 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-16 22:00:58 +00:00
|
|
|
|
2020-02-15 21:48:21 +00:00
|
|
|
fmt_rotateop(ctx->instr_str, "rlwnm", ra, rs, rb, mb, me, false);
|
2020-01-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_cmp_i_li(PPCDisasmContext* ctx) {
|
|
|
|
auto ls = (ctx->instr_code >> 21) & 0x1;
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
2020-01-29 02:29:10 +00:00
|
|
|
auto crfd = (ctx->instr_code >> 23) & 0x07;
|
2020-05-12 18:55:45 +00:00
|
|
|
int imm = ctx->instr_code & 0xFFFF;
|
2020-01-25 04:40:00 +00:00
|
|
|
|
2020-02-16 03:59:09 +00:00
|
|
|
|
|
|
|
if (ctx->simplified) {
|
|
|
|
if (!ls) {
|
|
|
|
if ((ctx->instr_code >> 26) & 0x1)
|
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d, r%d, 0x%X", "cmpwi", crfd, ra, imm);
|
|
|
|
else
|
2020-05-12 18:55:45 +00:00
|
|
|
ctx->instr_str = my_sprintf(
|
|
|
|
"%-8scr%d, r%d, %s0x%X", "cmplwi", crfd, ra, (imm < 0) ? "-" : "", abs(imm));
|
2020-02-16 22:00:58 +00:00
|
|
|
|
2020-02-16 03:59:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-13 15:00:36 +00:00
|
|
|
if ((ctx->instr_code >> 26) & 0x1)
|
2020-02-15 18:29:03 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d, %d, r%d, 0x%X", "cmpi", crfd, ls, ra, imm);
|
2020-02-13 15:00:36 +00:00
|
|
|
else
|
2020-05-12 18:55:45 +00:00
|
|
|
ctx->instr_str = my_sprintf(
|
|
|
|
"%-8scr%d, %d, r%d, %s0x%X", "cmpli", crfd, ls, ra, (imm < 0) ? "-" : "", abs(imm));
|
2020-01-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_bool_im(PPCDisasmContext* ctx) {
|
2020-02-08 03:54:10 +00:00
|
|
|
char opcode[10];
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
auto rs = (ctx->instr_code >> 21) & 0x1F;
|
2020-02-08 03:54:10 +00:00
|
|
|
auto index = ((ctx->instr_code >> 26) & 0x1F) - 24;
|
2020-05-12 18:55:45 +00:00
|
|
|
auto imm = ctx->instr_code & 0xFFFF;
|
2020-02-08 03:54:10 +00:00
|
|
|
|
|
|
|
if (ctx->simplified) {
|
|
|
|
if (index == 0) {
|
2020-05-12 18:55:45 +00:00
|
|
|
if (imm == 0 && !ra && !rs && !imm) { /* unofficial, produced by IDA */
|
2020-02-13 02:16:47 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s", "nop");
|
2020-02-08 03:54:10 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(opcode, opc_bim_str[index]);
|
|
|
|
fmt_threeop_uimm(ctx->instr_str, opcode, ra, rs, imm);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void generic_bcx(PPCDisasmContext* ctx, uint32_t bo, uint32_t bi, uint32_t dst) {
|
2020-01-29 02:29:10 +00:00
|
|
|
char opcode[10] = "bc";
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
if (ctx->instr_code & 1) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "l"); /* add suffix "l" if the LK bit is set */
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
|
|
|
if (ctx->instr_code & 2) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "a"); /* add suffix "a" if the AA bit is set */
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
|
|
|
ctx->instr_str = my_sprintf("%-8s%d, %d, 0x%08X", opcode, bo, bi, dst);
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void generic_bcctrx(PPCDisasmContext* ctx, uint32_t bo, uint32_t bi) {
|
2020-01-29 02:29:10 +00:00
|
|
|
char opcode[10] = "bcctr";
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
if (ctx->instr_code & 1) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "l"); /* add suffix "l" if the LK bit is set */
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%d, %d, 0x%08X", opcode, bo, bi);
|
2020-01-25 04:40:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void generic_bclrx(PPCDisasmContext* ctx, uint32_t bo, uint32_t bi) {
|
2020-01-29 02:29:10 +00:00
|
|
|
char opcode[10] = "bclr";
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
if (ctx->instr_code & 1) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "l"); /* add suffix "l" if the LK bit is set */
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%d, %d, 0x%08X", opcode, bo, bi);
|
2020-01-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_bcx(PPCDisasmContext* ctx) {
|
2020-01-29 02:29:10 +00:00
|
|
|
uint32_t bo, bi, dst, cr;
|
2020-05-12 18:55:45 +00:00
|
|
|
char opcode[10] = "b";
|
2020-02-12 23:05:10 +00:00
|
|
|
char operands[12] = "";
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
bo = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
bi = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
cr = bi >> 2;
|
|
|
|
dst = ((ctx->instr_code & 2) ? 0 : ctx->instr_addr) + SIGNEXT(ctx->instr_code & 0xFFFC, 15);
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
if (!ctx->simplified || ((bo & 0x10) && bi) || (((bo & 0x14) == 0x14) && (bo & 0xB) && bi)) {
|
2020-01-29 02:29:10 +00:00
|
|
|
generic_bcx(ctx, bo, bi, dst);
|
|
|
|
return;
|
|
|
|
}
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
if ((bo & 0x14) == 0x14) {
|
|
|
|
ctx->instr_str = my_sprintf("%-8s0x%08X", bx_mnem[0], dst);
|
|
|
|
return;
|
|
|
|
}
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
if (!(bo & 4)) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "d");
|
|
|
|
strcat(opcode, (bo & 2) ? "z" : "nz");
|
2020-01-29 02:29:10 +00:00
|
|
|
if (!(bo & 0x10)) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, (bo & 8) ? "t" : "f");
|
2020-01-29 02:29:10 +00:00
|
|
|
if (cr) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(operands, "4*cr0+");
|
2020-01-29 02:29:10 +00:00
|
|
|
operands[4] = cr + '0';
|
|
|
|
}
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(operands, br_cond[4 + (bi & 3)]);
|
|
|
|
strcat(operands, ", ");
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
2020-05-12 18:55:45 +00:00
|
|
|
} else { /* CTR ignored */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, br_cond[((bo >> 1) & 4) | (bi & 3)]);
|
2020-01-29 02:29:10 +00:00
|
|
|
if (cr) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(operands, "cr0, ");
|
2020-01-29 02:29:10 +00:00
|
|
|
operands[2] = cr + '0';
|
|
|
|
}
|
|
|
|
}
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
if (ctx->instr_code & 1) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "l"); /* add suffix "l" if the LK bit is set */
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
|
|
|
if (ctx->instr_code & 2) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "a"); /* add suffix "a" if the AA bit is set */
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
|
|
|
if (bo & 1) { /* incorporate prediction bit if set */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, (ctx->instr_code & 0x8000) ? "-" : "+");
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx->instr_str = my_sprintf("%-8s%s0x%08X", opcode, operands, dst);
|
2020-01-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_bcctrx(PPCDisasmContext* ctx) {
|
2020-01-29 02:29:10 +00:00
|
|
|
uint32_t bo, bi, cr;
|
2020-05-12 18:55:45 +00:00
|
|
|
char opcode[10] = "b";
|
2020-02-13 02:16:47 +00:00
|
|
|
char operands[4] = "";
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
bo = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
bi = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
cr = bi >> 2;
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-02-13 02:16:47 +00:00
|
|
|
if (!(bo & 4)) { /* bcctr with BO[2] = 0 is invalid */
|
|
|
|
opc_illegal(ctx);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
if (!ctx->simplified || ((bo & 0x10) && bi) || (((bo & 0x14) == 0x14) && (bo & 0xB) && bi)) {
|
2020-01-29 02:29:10 +00:00
|
|
|
generic_bcctrx(ctx, bo, bi);
|
|
|
|
return;
|
|
|
|
}
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
if ((bo & 0x14) == 0x14) {
|
2020-02-13 02:16:47 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s", bcctrx_mnem[ctx->instr_code & 1]);
|
2020-01-29 02:29:10 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-01-25 04:40:00 +00:00
|
|
|
|
2020-02-13 02:16:47 +00:00
|
|
|
strcat(opcode, br_cond[((bo >> 1) & 4) | (bi & 3)]);
|
|
|
|
strcat(opcode, "ctr");
|
|
|
|
if (cr) {
|
|
|
|
strcat(operands, "cr0");
|
|
|
|
operands[2] = cr + '0';
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
2020-01-22 11:28:42 +00:00
|
|
|
|
|
|
|
if (ctx->instr_code & 1) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "l"); /* add suffix "l" if the LK bit is set */
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
2020-01-29 02:29:10 +00:00
|
|
|
if (bo & 1) { /* incorporate prediction bit if set */
|
2020-02-13 02:16:47 +00:00
|
|
|
strcat(opcode, "+");
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
2020-01-29 02:29:10 +00:00
|
|
|
|
2020-02-13 02:16:47 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%s", opcode, operands);
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_bclrx(PPCDisasmContext* ctx) {
|
2020-01-29 02:29:10 +00:00
|
|
|
uint32_t bo, bi, cr;
|
2020-05-12 18:55:45 +00:00
|
|
|
char opcode[10] = "b";
|
2020-02-13 02:16:47 +00:00
|
|
|
char operands[12] = "";
|
2020-01-22 11:28:42 +00:00
|
|
|
|
2020-01-22 11:28:42 +00:00
|
|
|
bo = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
bi = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
cr = bi >> 2;
|
2020-01-22 11:28:42 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
if (!ctx->simplified || ((bo & 0x10) && bi) || (((bo & 0x14) == 0x14) && (bo & 0xB) && bi)) {
|
2020-02-06 05:11:59 +00:00
|
|
|
generic_bclrx(ctx, bo, bi);
|
2020-01-22 11:28:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((bo & 0x14) == 0x14) {
|
2020-02-13 02:16:47 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s", bclrx_mnem[ctx->instr_code & 1]);
|
2020-01-22 11:28:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(bo & 4)) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "d");
|
|
|
|
strcat(opcode, (bo & 2) ? "z" : "nz");
|
2020-01-22 11:28:42 +00:00
|
|
|
if (!(bo & 0x10)) {
|
2020-02-13 02:16:47 +00:00
|
|
|
strcat(opcode, (bo & 8) ? "t" : "f");
|
2020-01-22 11:28:42 +00:00
|
|
|
if (cr) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(operands, "4*cr0+");
|
2020-01-22 11:28:42 +00:00
|
|
|
operands[4] = cr + '0';
|
|
|
|
}
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(operands, br_cond[4 + (bi & 3)]);
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
2020-05-12 18:55:45 +00:00
|
|
|
} else { /* CTR ignored */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, br_cond[((bo >> 1) & 4) | (bi & 3)]);
|
2020-01-22 11:28:42 +00:00
|
|
|
if (cr) {
|
2020-02-13 02:16:47 +00:00
|
|
|
strcat(operands, "cr0");
|
2020-01-22 11:28:42 +00:00
|
|
|
operands[2] = cr + '0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-13 02:16:47 +00:00
|
|
|
strcat(opcode, "lr");
|
|
|
|
|
2020-01-22 11:28:42 +00:00
|
|
|
if (ctx->instr_code & 1) {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "l"); /* add suffix "l" if the LK bit is set */
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
if (bo & 1) { /* incorporate prediction bit if set */
|
2020-02-13 02:16:47 +00:00
|
|
|
strcat(opcode, "+");
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
|
2020-02-13 02:16:47 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%s", opcode, operands);
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_bx(PPCDisasmContext* ctx) {
|
|
|
|
uint32_t dst = ((ctx->instr_code & 2) ? 0 : ctx->instr_addr) +
|
|
|
|
SIGNEXT(ctx->instr_code & 0x3FFFFFC, 25);
|
2020-01-22 11:28:42 +00:00
|
|
|
|
|
|
|
ctx->instr_str = my_sprintf("%-8s0x%08X", bx_mnem[ctx->instr_code & 3], dst);
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_sc(PPCDisasmContext* ctx) {
|
2020-01-29 02:29:10 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s", "sc");
|
2020-01-25 22:24:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_group19(PPCDisasmContext* ctx) {
|
2020-01-29 02:29:10 +00:00
|
|
|
auto rb = (ctx->instr_code >> 11) & 0x1F;
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
auto rs = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
int ext_opc = (ctx->instr_code >> 1) & 0x3FF; /* extract extended opcode */
|
2020-03-01 21:09:08 +00:00
|
|
|
char operand1[12] = "";
|
|
|
|
char operand2[12] = "";
|
|
|
|
char operand3[12] = "";
|
|
|
|
|
2020-03-01 21:11:26 +00:00
|
|
|
if (rs > 3) {
|
2020-03-01 21:09:08 +00:00
|
|
|
strcat(operand1, "4*cr0+");
|
|
|
|
operand1[4] = (rs >> 2) + '0';
|
|
|
|
}
|
|
|
|
strcat(operand1, br_cond[((rs % 4) + 4)]);
|
|
|
|
|
|
|
|
|
2020-03-01 21:11:26 +00:00
|
|
|
if (ra > 3) {
|
2020-03-01 21:09:08 +00:00
|
|
|
strcat(operand2, "4*cr0+");
|
|
|
|
operand2[4] = (ra >> 2) + '0';
|
|
|
|
}
|
|
|
|
strcat(operand2, br_cond[((ra % 4) + 4)]);
|
|
|
|
|
|
|
|
|
2020-03-01 21:11:26 +00:00
|
|
|
if (rb > 3) {
|
2020-03-01 21:09:08 +00:00
|
|
|
strcat(operand3, "4*cr0+");
|
|
|
|
operand3[4] = (rb >> 2) + '0';
|
|
|
|
}
|
|
|
|
strcat(operand3, br_cond[((rb % 4) + 4)]);
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
switch (ext_opc) {
|
|
|
|
case 0:
|
2020-02-13 15:00:36 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d, cr%d", "mcrf", (rs >> 2), (ra >> 2));
|
2020-01-29 02:29:10 +00:00
|
|
|
return;
|
|
|
|
case 16:
|
|
|
|
opc_bclrx(ctx);
|
|
|
|
return;
|
|
|
|
case 33:
|
2020-02-08 03:54:10 +00:00
|
|
|
if (ctx->simplified && (ra == rb)) {
|
2020-03-01 21:09:08 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%s, %s, %s", "crnor", operand1, operand2, operand3);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-03-01 21:09:08 +00:00
|
|
|
fmt_threeop_crb(ctx->instr_str, "crnor", rs, ra, rb);
|
2020-02-08 03:54:10 +00:00
|
|
|
}
|
2020-01-29 02:29:10 +00:00
|
|
|
return;
|
|
|
|
case 50:
|
2020-02-13 03:06:26 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s", "rfi");
|
2020-01-29 02:29:10 +00:00
|
|
|
return;
|
|
|
|
case 129:
|
2020-03-01 21:09:08 +00:00
|
|
|
if (ctx->simplified) {
|
|
|
|
ctx->instr_str = my_sprintf("%-8s%s, %s, %s", "crandc", operand1, operand2, operand3);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-03-01 21:09:08 +00:00
|
|
|
fmt_threeop_crb(ctx->instr_str, "crandc", rs, ra, rb);
|
|
|
|
}
|
2020-01-29 02:29:10 +00:00
|
|
|
return;
|
|
|
|
case 150:
|
2020-02-13 03:06:26 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s", "isync");
|
2020-01-29 02:29:10 +00:00
|
|
|
return;
|
|
|
|
case 193:
|
2020-02-07 03:26:45 +00:00
|
|
|
if (ctx->simplified && (rs == ra) && (rs == rb)) {
|
|
|
|
ctx->instr_str = my_sprintf("%-8scrb%d", "crclr", rs);
|
2020-03-01 21:09:08 +00:00
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (ctx->simplified && ((rs != ra) || (rs != rb))) {
|
2020-03-01 21:09:08 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%s, %s, %s", "crxor", operand1, operand2, operand3);
|
|
|
|
return;
|
2020-02-07 03:26:45 +00:00
|
|
|
}
|
2020-02-08 03:54:10 +00:00
|
|
|
fmt_threeop_crb(ctx->instr_str, "crxor", rs, ra, rb);
|
2020-01-29 02:29:10 +00:00
|
|
|
return;
|
|
|
|
case 225:
|
2020-03-01 21:09:08 +00:00
|
|
|
if (ctx->simplified) {
|
|
|
|
ctx->instr_str = my_sprintf("%-8s%s, %s, %s", "crnand", operand1, operand2, operand3);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-03-01 21:09:08 +00:00
|
|
|
fmt_threeop_crb(ctx->instr_str, "crnand", rs, ra, rb);
|
|
|
|
}
|
2020-01-29 02:29:10 +00:00
|
|
|
return;
|
|
|
|
case 257:
|
2020-03-01 21:09:08 +00:00
|
|
|
if (ctx->simplified) {
|
|
|
|
ctx->instr_str = my_sprintf("%-8s%s, %s, %s", "crand", operand1, operand2, operand3);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-03-01 21:09:08 +00:00
|
|
|
fmt_threeop_crb(ctx->instr_str, "crand", rs, ra, rb);
|
|
|
|
}
|
2020-01-29 02:29:10 +00:00
|
|
|
return;
|
|
|
|
case 289:
|
2020-02-08 03:54:10 +00:00
|
|
|
if (ctx->simplified && (rs == ra) && (rs == rb)) {
|
|
|
|
ctx->instr_str = my_sprintf("%-8scrb%d", "crset", rs);
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (ctx->simplified && ((rs != ra) || (rs != rb))) {
|
2020-03-01 21:09:08 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%s, %s, %s", "creqv", operand1, operand2, operand3);
|
|
|
|
return;
|
|
|
|
}
|
2020-01-29 02:29:10 +00:00
|
|
|
fmt_threeop_crb(ctx->instr_str, "creqv", rs, ra, rb);
|
|
|
|
return;
|
|
|
|
case 417:
|
2020-03-01 21:09:08 +00:00
|
|
|
if (ctx->simplified) {
|
|
|
|
ctx->instr_str = my_sprintf("%-8s%s, %s, %s", "crorc", operand1, operand2, operand3);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-03-01 21:09:08 +00:00
|
|
|
fmt_threeop_crb(ctx->instr_str, "crorc", rs, ra, rb);
|
|
|
|
}
|
2020-01-29 02:29:10 +00:00
|
|
|
return;
|
|
|
|
case 449:
|
2020-02-08 03:54:10 +00:00
|
|
|
if (ctx->simplified && (ra == rb)) {
|
|
|
|
ctx->instr_str = my_sprintf("%-8scrb%d, crb%d", "crmove", rs, ra);
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (ctx->simplified && (ra != rb)) {
|
2020-03-01 21:09:08 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%s, %s, %s", "cror", operand1, operand2, operand3);
|
|
|
|
return;
|
|
|
|
}
|
2020-01-29 02:29:10 +00:00
|
|
|
fmt_threeop_crb(ctx->instr_str, "cror", rs, ra, rb);
|
|
|
|
return;
|
|
|
|
case 528:
|
|
|
|
opc_bcctrx(ctx);
|
|
|
|
return;
|
|
|
|
}
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
|
2020-01-29 02:29:10 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_group31(PPCDisasmContext* ctx) {
|
2020-01-22 11:28:42 +00:00
|
|
|
char opcode[10] = "";
|
|
|
|
|
|
|
|
auto rb = (ctx->instr_code >> 11) & 0x1F;
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
auto rs = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
int ext_opc = (ctx->instr_code >> 1) & 0x3FF; /* extract extended opcode */
|
|
|
|
int index = ext_opc >> 5;
|
2020-01-22 11:28:42 +00:00
|
|
|
bool rc_set = ctx->instr_code & 1;
|
2020-01-22 11:28:42 +00:00
|
|
|
|
2020-01-22 11:28:42 +00:00
|
|
|
switch (ext_opc & 0x1F) {
|
2020-05-12 18:55:45 +00:00
|
|
|
case 8: /* subtracts & friends */
|
2020-01-22 11:28:42 +00:00
|
|
|
index &= 0xF; /* strip OE bit */
|
|
|
|
if (!strlen(opc_subs[index])) {
|
|
|
|
opc_illegal(ctx);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_subs[index]);
|
2020-01-22 11:28:42 +00:00
|
|
|
if (ext_opc & 0x200) /* check OE bit */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "o");
|
2020-01-22 11:28:42 +00:00
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-01-22 11:28:42 +00:00
|
|
|
if (index == 3 || index == 6 || index == 7 || index == 11 ||
|
|
|
|
index == 15) { /* ugly check for two-operands instructions */
|
|
|
|
if (rb != 0)
|
2020-01-22 11:28:42 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
2020-01-22 11:28:42 +00:00
|
|
|
fmt_twoop(ctx->instr_str, opcode, rs, ra);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else
|
2020-01-22 11:28:42 +00:00
|
|
|
fmt_threeop(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
}
|
|
|
|
return;
|
2020-01-22 11:28:42 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
case 10: /* additions */
|
2020-01-22 11:28:42 +00:00
|
|
|
index &= 0xF; /* strip OE bit */
|
|
|
|
if (index > 8 || !strlen(opc_adds[index])) {
|
|
|
|
opc_illegal(ctx);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_adds[index]);
|
2020-01-22 11:28:42 +00:00
|
|
|
if (ext_opc & 0x200) /* check OE bit */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "o");
|
2020-01-22 11:28:42 +00:00
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-01-22 11:28:42 +00:00
|
|
|
if (index == 6 || index == 7) {
|
|
|
|
if (rb != 0)
|
2020-01-22 11:28:42 +00:00
|
|
|
opc_illegal(ctx);
|
2020-01-22 11:28:42 +00:00
|
|
|
else
|
|
|
|
fmt_twoop(ctx->instr_str, opcode, rs, ra);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else
|
2020-01-22 11:28:42 +00:00
|
|
|
fmt_threeop(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
}
|
|
|
|
return;
|
2020-01-25 04:40:00 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
case 11: /* integer multiplications and divisions */
|
2020-01-22 11:28:42 +00:00
|
|
|
index &= 0xF; /* strip OE bit */
|
|
|
|
if (!strlen(opc_muldivs[index])) {
|
|
|
|
opc_illegal(ctx);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_muldivs[index]);
|
2020-01-22 11:28:42 +00:00
|
|
|
if (ext_opc & 0x200) /* check OE bit */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, "o");
|
2020-01-22 11:28:42 +00:00
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-01-22 11:28:42 +00:00
|
|
|
if ((!index || index == 2) && (ext_opc & 0x200))
|
2020-01-22 11:28:42 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
2020-02-08 03:54:10 +00:00
|
|
|
fmt_threeop(ctx->instr_str, opcode, rs, ra, rb);
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
2020-02-14 04:37:33 +00:00
|
|
|
case 0x12: /* tlb & segment register instructions */
|
2020-02-07 03:26:45 +00:00
|
|
|
|
2020-03-01 18:18:29 +00:00
|
|
|
if (index == 4) { /* mtmsr */
|
|
|
|
if ((ra != 0) || (rb != 0) || rc_set)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", "mtmsr", rs);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (index == 6) { /* mtsr */
|
2020-02-14 04:37:33 +00:00
|
|
|
if (ra & 16)
|
2020-02-13 05:08:40 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
2020-02-14 04:37:33 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%d, r%d", "mtsr", ra, rs);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (index == 7) { /* mtsrin */
|
2020-02-14 04:46:12 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, r%d", "mtsrin", rs, rb);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (index == 9) { /* tlbie */
|
2020-02-14 04:40:36 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", "tlbie", rb);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (index == 11) { /* tlbia */
|
2020-02-14 04:37:33 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s", "tlbia");
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (index == 30) { /* tlbld - 603 only */
|
2021-01-24 04:30:29 +00:00
|
|
|
if (!rs && !ra)
|
2020-02-13 15:00:36 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%s", "tlbld", rb);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (index == 30) { /* tlbli - 603 only */
|
2021-01-24 04:30:29 +00:00
|
|
|
if (!rs && !ra)
|
2020-02-13 15:00:36 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%s", "tlbli", rb);
|
|
|
|
}
|
2020-02-07 03:26:45 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
case 0x18: /* Shifting instructions */
|
2020-02-13 02:31:54 +00:00
|
|
|
strcpy(opcode, opc_shft_reg[index]);
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
2020-02-13 03:26:12 +00:00
|
|
|
|
2021-01-24 04:30:29 +00:00
|
|
|
if ((index == 0) || (index == 4) || (index == 6) || (index == 16) || (index == 20) ||
|
|
|
|
(index == 22) || (index == 24) || (index == 28)) {
|
2020-02-13 03:26:12 +00:00
|
|
|
fmt_threeop(ctx->instr_str, opcode, ra, rs, rb);
|
2021-01-24 04:30:29 +00:00
|
|
|
} else if ((index == 5) || (index == 7) || (index == 21) || (index == 23) || (index == 25) || (index == 29)) {
|
2020-02-13 03:26:12 +00:00
|
|
|
fmt_threeop_simm(ctx->instr_str, opcode, ra, rs, rb);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-13 02:31:54 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 0x19: /* (Extended) Shifting instructions - 601 only*/
|
|
|
|
strcpy(opcode, opc_shft_ext[index]);
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
2021-01-24 04:30:29 +00:00
|
|
|
if ((index == 4) || (index == 6) || (index == 16) || (index == 20) || (index == 22) ||
|
2020-05-12 18:55:45 +00:00
|
|
|
(index == 28)) {
|
2020-02-15 18:29:03 +00:00
|
|
|
fmt_threeop(ctx->instr_str, opcode, ra, rs, rb);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-13 02:31:54 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
}
|
|
|
|
|
2020-02-07 03:26:45 +00:00
|
|
|
return;
|
|
|
|
|
2020-02-14 04:37:33 +00:00
|
|
|
case 0x1A: /* Byte sign extend instructions (and cntlzw) */
|
2020-02-13 02:31:54 +00:00
|
|
|
|
2020-02-14 04:37:33 +00:00
|
|
|
if (index == 0)
|
|
|
|
strcpy(opcode, "cntlzw");
|
|
|
|
else if (index == 28)
|
2020-02-13 02:31:54 +00:00
|
|
|
strcpy(opcode, "extsh");
|
2020-02-06 05:33:49 +00:00
|
|
|
else if (index == 29)
|
2020-02-13 02:31:54 +00:00
|
|
|
strcpy(opcode, "extsb");
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
fmt_twoop(ctx->instr_str, opcode, rs, ra);
|
|
|
|
|
2020-02-06 05:33:49 +00:00
|
|
|
return;
|
|
|
|
|
2020-01-22 11:28:42 +00:00
|
|
|
case 0x1C: /* logical instructions */
|
|
|
|
if (index == 13 && rs == rb && ctx->simplified) {
|
|
|
|
fmt_twoop(ctx->instr_str, rc_set ? "mr." : "mr", ra, rs);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_logic[index]);
|
2020-01-22 11:28:42 +00:00
|
|
|
if (!strlen(opcode)) {
|
2020-01-22 11:28:42 +00:00
|
|
|
opc_illegal(ctx);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-01-22 11:28:42 +00:00
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-01-22 11:28:42 +00:00
|
|
|
fmt_threeop(ctx->instr_str, opcode, ra, rs, rb);
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
2020-02-07 03:26:45 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
case 0x17: /* indexed load/store instructions */
|
2020-02-14 04:04:14 +00:00
|
|
|
if (index == 30) { /* stfiwx sneaks in here */
|
|
|
|
if (rc_set) {
|
|
|
|
opc_illegal(ctx);
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-14 04:04:14 +00:00
|
|
|
if (ra == 0)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, 0, r%d", opc_idx_ldst[index], rs, rb);
|
|
|
|
else {
|
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, r%d, r%d", opc_idx_ldst[index], rs, ra, rb);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2020-01-22 11:28:42 +00:00
|
|
|
if (index > 23 || rc_set || strlen(opc_idx_ldst[index]) == 0) {
|
|
|
|
opc_illegal(ctx);
|
|
|
|
return;
|
|
|
|
}
|
2020-02-13 05:08:40 +00:00
|
|
|
if (index < 16) {
|
2020-03-01 18:18:29 +00:00
|
|
|
if (ra == 0)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, 0, r%d", opc_idx_ldst[index], rs, rb);
|
|
|
|
else
|
|
|
|
fmt_threeop(ctx->instr_str, opc_idx_ldst[index], rs, ra, rb);
|
|
|
|
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, r%d, r%d", opc_idx_ldst[index], rs, ra, rb);
|
2020-02-13 05:08:40 +00:00
|
|
|
}
|
2020-01-22 11:28:42 +00:00
|
|
|
return;
|
2020-02-07 03:26:45 +00:00
|
|
|
|
|
|
|
case 0x16: /* processor mgmt + byte reversed load and store instructions */
|
|
|
|
strcpy(opcode, proc_mgmt_str[index]);
|
|
|
|
|
2020-02-15 18:29:03 +00:00
|
|
|
if (index == 4) { /* stwcx.*/
|
2020-02-13 03:58:51 +00:00
|
|
|
if (!rc_set) {
|
|
|
|
opc_illegal(ctx);
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-13 03:58:51 +00:00
|
|
|
if (ra == 0)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, 0, r%d", opcode, rs, rb);
|
|
|
|
else
|
|
|
|
fmt_threeop(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2020-02-13 05:08:40 +00:00
|
|
|
/* eciwx, ecowx, lhbrx, lwbrx, stwbrx, sthbrx */
|
2021-01-24 04:30:29 +00:00
|
|
|
else if ((index == 9) || (index == 13) || (index == 16) || (index == 20) || (index == 24) || (index == 28)) {
|
2020-02-13 05:08:40 +00:00
|
|
|
if (rc_set) {
|
|
|
|
opc_illegal(ctx);
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-13 05:08:40 +00:00
|
|
|
if (ra == 0)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, 0, r%d", opcode, rs, rb);
|
|
|
|
else
|
|
|
|
fmt_threeop(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
return;
|
|
|
|
}
|
2021-01-24 04:30:29 +00:00
|
|
|
} else if ((index == 18) || (index == 26)) { /* sync, eieio */
|
2020-02-07 03:26:45 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s", opcode);
|
|
|
|
return;
|
|
|
|
}
|
2020-02-20 02:20:01 +00:00
|
|
|
/* dcba, dcbf, dcbi, dcbst, dcbt, dcbz, icbi */
|
2020-05-12 18:55:45 +00:00
|
|
|
else if (
|
2021-01-24 04:30:29 +00:00
|
|
|
(index == 1) || (index == 2) || (index == 7) || (index == 8) || (index == 14) ||
|
|
|
|
(index == 23) || (index == 30) || (index == 31)) {
|
|
|
|
if (rc_set || (rs != 0)) {
|
2020-02-13 05:08:40 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-13 05:08:40 +00:00
|
|
|
if (ra == 0)
|
2020-02-20 02:37:51 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s0, r%d", opcode, rb);
|
2020-02-13 05:08:40 +00:00
|
|
|
else
|
|
|
|
fmt_twoop(ctx->instr_str, opcode, ra, rb);
|
|
|
|
return;
|
|
|
|
}
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (index == 17) { /* tlbsync */
|
2020-02-13 05:08:40 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s", opcode);
|
2020-02-20 02:37:51 +00:00
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-13 05:08:40 +00:00
|
|
|
opc_illegal(ctx);
|
2020-02-07 03:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
2020-01-22 11:28:42 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
auto ref_spr = (((ctx->instr_code >> 11) & 31) << 5) | ((ctx->instr_code >> 16) & 31);
|
2020-02-15 20:10:01 +00:00
|
|
|
auto spr_high = (ctx->instr_code >> 11) & 31;
|
2020-05-12 18:55:45 +00:00
|
|
|
auto spr_low = (ctx->instr_code >> 16) & 31;
|
2020-01-25 22:24:08 +00:00
|
|
|
|
2020-01-22 11:28:42 +00:00
|
|
|
switch (ext_opc) {
|
2020-02-06 05:11:59 +00:00
|
|
|
case 0: /* cmp */
|
2020-02-16 03:59:09 +00:00
|
|
|
if (rc_set) {
|
2020-02-06 05:11:59 +00:00
|
|
|
opc_illegal(ctx);
|
2020-02-16 03:59:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (ctx->simplified) {
|
|
|
|
if (!(rs & 1)) {
|
2020-02-20 02:03:39 +00:00
|
|
|
if ((rs >> 2) == 0) {
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, r%d", "cmpw", ra, rb);
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-20 02:03:39 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d, r%d, r%d", "cmpw", (rs >> 2), ra, rb);
|
|
|
|
return;
|
|
|
|
}
|
2020-02-16 03:59:09 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-16 22:00:58 +00:00
|
|
|
|
2020-02-20 02:12:23 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d, r%d, r%d", "cmp", (rs >> 2), ra, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
2020-02-13 02:31:54 +00:00
|
|
|
case 4: /* tw */
|
2020-02-13 03:41:23 +00:00
|
|
|
if (rc_set) {
|
2020-01-22 11:28:42 +00:00
|
|
|
opc_illegal(ctx);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-13 03:41:23 +00:00
|
|
|
if (ctx->simplified) {
|
|
|
|
strcpy(opcode, trap_cond[rs]);
|
|
|
|
|
2020-02-13 03:58:51 +00:00
|
|
|
if (strlen(opcode) != 0) {
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, r%d", opcode, ra, rb);
|
2020-02-14 04:04:14 +00:00
|
|
|
break;
|
2020-02-13 03:41:23 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-13 03:58:51 +00:00
|
|
|
|
|
|
|
ctx->instr_str = my_sprintf("%-8s%d, r%d, r%d", "tw", rs, ra, rb);
|
2020-02-13 03:41:23 +00:00
|
|
|
}
|
2020-01-22 11:28:42 +00:00
|
|
|
break;
|
2020-01-25 22:24:08 +00:00
|
|
|
case 19: /* mfcr */
|
|
|
|
fmt_oneop(ctx->instr_str, "mfcr", rs);
|
|
|
|
break;
|
2020-02-13 05:08:40 +00:00
|
|
|
case 20: /* lwarx */
|
|
|
|
if (rc_set) {
|
|
|
|
opc_illegal(ctx);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-13 05:08:40 +00:00
|
|
|
if (ra == 0)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, 0, r%d", "lwarx", rs, rb);
|
|
|
|
else
|
|
|
|
fmt_threeop(ctx->instr_str, "lwarx", rs, ra, rb);
|
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
2020-02-13 02:31:54 +00:00
|
|
|
case 29: /* maskg */
|
|
|
|
strcpy(opcode, "maskg");
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
fmt_threeop(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
break;
|
2020-02-06 05:33:49 +00:00
|
|
|
case 32: /* cmpl */
|
2020-02-16 03:59:09 +00:00
|
|
|
if (rc_set) {
|
2020-02-06 05:11:59 +00:00
|
|
|
opc_illegal(ctx);
|
2020-02-16 03:59:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->simplified) {
|
|
|
|
if (!(rs & 1)) {
|
2020-03-01 18:18:29 +00:00
|
|
|
if ((rs >> 2) == 0)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, r%d", "cmplw", ra, rb);
|
|
|
|
else
|
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d, r%d, r%d", "cmplw", (rs >> 2), ra, rb);
|
|
|
|
|
2020-02-16 03:59:09 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-20 02:03:39 +00:00
|
|
|
else {
|
2020-05-12 18:55:45 +00:00
|
|
|
ctx->instr_str = my_sprintf(
|
|
|
|
"%-8scr%d, %d, r%d, r%d", "cmpl", (rs >> 2), (rs & 1), ra, rb);
|
2020-02-20 02:03:39 +00:00
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
2020-01-29 02:29:10 +00:00
|
|
|
case 83: /* mfmsr */
|
2020-05-12 18:55:45 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", "mfmsr", (ctx->instr_code >> 21) & 0x1F);
|
2020-01-29 02:29:10 +00:00
|
|
|
break;
|
2020-01-22 11:28:42 +00:00
|
|
|
case 144: /* mtcrf */
|
|
|
|
if (ctx->instr_code & 0x100801)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else {
|
2020-03-01 18:18:29 +00:00
|
|
|
if (((ctx->instr_code >> 12) & 0xFF) == 0xFF)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", "mtcr", rs);
|
|
|
|
else
|
2020-05-12 18:55:45 +00:00
|
|
|
ctx->instr_str = my_sprintf(
|
|
|
|
"%-8s0x%02X, r%d", "mtcrf", (ctx->instr_code >> 12) & 0xFF, rs);
|
2020-01-22 11:28:42 +00:00
|
|
|
}
|
|
|
|
break;
|
2020-02-13 02:31:54 +00:00
|
|
|
case 277: /* lscbx */
|
|
|
|
strcpy(opcode, "lscbx");
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
fmt_threeop(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
break;
|
2020-01-25 22:24:08 +00:00
|
|
|
case 339: /* mfspr */
|
2020-02-07 03:26:45 +00:00
|
|
|
if (ctx->simplified) {
|
2020-02-15 20:10:01 +00:00
|
|
|
switch (spr_high) {
|
|
|
|
case 0:
|
|
|
|
strcpy(opcode, "mf");
|
|
|
|
strcat(opcode, spr_index0[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
2020-02-07 03:26:45 +00:00
|
|
|
return;
|
|
|
|
case 8:
|
2020-02-15 20:10:01 +00:00
|
|
|
strcpy(opcode, "mf");
|
|
|
|
strcat(opcode, spr_index8[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
2020-02-07 03:26:45 +00:00
|
|
|
return;
|
2020-02-15 20:10:01 +00:00
|
|
|
case 16:
|
|
|
|
strcpy(opcode, "mf");
|
|
|
|
strcat(opcode, spr_index16[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
2020-02-13 15:00:36 +00:00
|
|
|
return;
|
2020-02-16 04:37:36 +00:00
|
|
|
case 29:
|
|
|
|
strcpy(opcode, "mf");
|
|
|
|
strcat(opcode, spr_index29[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
|
|
|
return;
|
|
|
|
case 30:
|
|
|
|
strcpy(opcode, "mf");
|
|
|
|
strcat(opcode, spr_index30[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
|
|
|
return;
|
|
|
|
case 31:
|
|
|
|
strcpy(opcode, "mf");
|
|
|
|
strcat(opcode, spr_index31[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
|
|
|
return;
|
2020-02-07 03:26:45 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-25 22:24:08 +00:00
|
|
|
fmt_twoop_fromspr(ctx->instr_str, "mfspr", rs, ref_spr);
|
|
|
|
break;
|
2020-02-06 05:11:59 +00:00
|
|
|
case 371: /* mftb */
|
2020-02-15 20:10:01 +00:00
|
|
|
if (ctx->simplified) {
|
|
|
|
if (ref_spr == 268) {
|
|
|
|
fmt_oneop(ctx->instr_str, "mftbl", rs);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else if (ref_spr == 269) {
|
2020-02-15 20:10:01 +00:00
|
|
|
fmt_oneop(ctx->instr_str, "mftbu", rs);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, %d", "mftb", rs, ref_spr);
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
2020-01-25 22:24:08 +00:00
|
|
|
case 467: /* mtspr */
|
2020-02-07 03:26:45 +00:00
|
|
|
if (ctx->simplified) {
|
2020-02-15 20:10:01 +00:00
|
|
|
switch (spr_high) {
|
|
|
|
case 0:
|
|
|
|
strcpy(opcode, "mt");
|
|
|
|
strcat(opcode, spr_index0[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
2020-02-07 03:26:45 +00:00
|
|
|
return;
|
|
|
|
case 8:
|
2020-02-15 20:10:01 +00:00
|
|
|
strcpy(opcode, "mt");
|
|
|
|
strcat(opcode, spr_index8[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
2020-02-13 15:00:36 +00:00
|
|
|
return;
|
2020-02-15 20:10:01 +00:00
|
|
|
case 16:
|
|
|
|
strcpy(opcode, "mt");
|
|
|
|
strcat(opcode, spr_index16[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
2020-02-13 15:00:36 +00:00
|
|
|
return;
|
2020-02-16 04:37:36 +00:00
|
|
|
case 29:
|
|
|
|
strcpy(opcode, "mt");
|
|
|
|
strcat(opcode, spr_index29[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
|
|
|
return;
|
|
|
|
case 30:
|
|
|
|
strcpy(opcode, "mt");
|
|
|
|
strcat(opcode, spr_index30[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
|
|
|
return;
|
|
|
|
case 31:
|
|
|
|
strcpy(opcode, "mt");
|
|
|
|
strcat(opcode, spr_index31[spr_low]);
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d", opcode, rs);
|
|
|
|
return;
|
2020-02-07 03:26:45 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-25 22:24:08 +00:00
|
|
|
fmt_twoop_tospr(ctx->instr_str, "mtspr", ref_spr, rs);
|
|
|
|
break;
|
2020-02-07 14:54:15 +00:00
|
|
|
case 512: /* mcrxr */
|
2020-02-13 15:00:36 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d", "mcrxr", (rs >> 2));
|
2020-02-07 14:54:15 +00:00
|
|
|
break;
|
2020-02-13 02:31:54 +00:00
|
|
|
case 531: /* clcs */
|
|
|
|
strcpy(opcode, "clcs");
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
fmt_twoop(ctx->instr_str, opcode, rs, ra);
|
2020-02-13 02:31:54 +00:00
|
|
|
break;
|
2020-02-07 03:26:45 +00:00
|
|
|
case 533: /* lswx */
|
2020-02-13 05:08:40 +00:00
|
|
|
if (rc_set) {
|
|
|
|
opc_illegal(ctx);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-13 05:08:40 +00:00
|
|
|
if (ra == 0)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, 0, r%d", "lswx", rs, rb);
|
|
|
|
else
|
|
|
|
fmt_threeop(ctx->instr_str, "lswx", rs, ra, rb);
|
|
|
|
}
|
2020-02-07 03:26:45 +00:00
|
|
|
break;
|
2020-02-13 02:31:54 +00:00
|
|
|
case 541: /* maskir */
|
|
|
|
strcpy(opcode, "maskir");
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
fmt_threeop(ctx->instr_str, opcode, ra, rs, rb);
|
2020-02-13 02:31:54 +00:00
|
|
|
return;
|
2020-02-14 04:46:12 +00:00
|
|
|
case 595: /* mfsr */
|
|
|
|
if (ra & 16)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, %d", "mfsr", rs, ra);
|
|
|
|
break;
|
2020-02-07 03:26:45 +00:00
|
|
|
case 597: /* lswi */
|
2020-02-13 05:08:40 +00:00
|
|
|
if (rc_set) {
|
|
|
|
opc_illegal(ctx);
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-14 04:04:14 +00:00
|
|
|
if (rb == 0)
|
|
|
|
rb = 32;
|
|
|
|
|
2020-02-13 05:08:40 +00:00
|
|
|
if (ra == 0)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, 0, %x", "lswi", rs, rb);
|
|
|
|
else
|
|
|
|
fmt_threeop_simm(ctx->instr_str, "lswi", rs, ra, rb);
|
|
|
|
}
|
|
|
|
break;
|
2020-02-14 04:46:12 +00:00
|
|
|
case 659: /* mfsrin */
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, r%d", "mtsrin", rs, rb);
|
|
|
|
break;
|
2020-02-13 05:08:40 +00:00
|
|
|
case 661: /* stswx */
|
|
|
|
if (rc_set) {
|
|
|
|
opc_illegal(ctx);
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-13 05:08:40 +00:00
|
|
|
if (ra == 0)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, 0, r%d", "stswx", rs, rb);
|
|
|
|
else
|
|
|
|
fmt_threeop(ctx->instr_str, "stswx", rs, ra, rb);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 725: /* stswi */
|
|
|
|
if (rc_set) {
|
|
|
|
opc_illegal(ctx);
|
|
|
|
return;
|
2020-05-12 18:55:45 +00:00
|
|
|
} else {
|
2020-02-14 04:04:14 +00:00
|
|
|
if (rb == 0)
|
|
|
|
rb = 32;
|
|
|
|
|
2020-02-13 05:08:40 +00:00
|
|
|
if (ra == 0)
|
|
|
|
ctx->instr_str = my_sprintf("%-8sr%d, 0, %d", "stswi", rs, rb);
|
|
|
|
else
|
|
|
|
fmt_threeop_simm(ctx->instr_str, "stswi", rs, ra, rb);
|
|
|
|
return;
|
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
opc_illegal(ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_group59(PPCDisasmContext* ctx) {
|
2020-02-06 05:11:59 +00:00
|
|
|
char opcode[10] = "";
|
|
|
|
|
|
|
|
auto rc = (ctx->instr_code >> 6) & 0x1F;
|
|
|
|
auto rb = (ctx->instr_code >> 11) & 0x1F;
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
auto rs = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
int ext_opc = (ctx->instr_code >> 1) & 0x3FF; /* extract extended opcode */
|
2020-02-06 05:11:59 +00:00
|
|
|
bool rc_set = ctx->instr_code & 1;
|
|
|
|
|
|
|
|
switch (ext_opc & 0x1F) {
|
|
|
|
case 18: /* floating point division */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "fdivs");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc != 0)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_threeop_flt(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 20: /* floating point subtract */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "fsubs");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc != 0)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_threeop_flt(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 21: /* floating point addition */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "fadds");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc != 0)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_threeop_flt(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 22: /* floating point square root */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "fsqrts");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2021-01-24 04:30:29 +00:00
|
|
|
if ((rc != 0) || (ra != 0))
|
2020-02-06 05:11:59 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_twoop_flt(ctx->instr_str, "fsqrts", rs, rb);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 24: /* fres */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "fres");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2021-01-24 04:30:29 +00:00
|
|
|
if ((rc != 0) || (ra != 0))
|
2020-02-06 05:11:59 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_twoop_flt(ctx->instr_str, opcode, rs, rb);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 25: /* fmuls */
|
|
|
|
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[25]);
|
|
|
|
strcat(opcode, "s");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rb != 0)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_threeop_flt(ctx->instr_str, opcode, rs, ra, rc);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 28: /* fmsubs */
|
|
|
|
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[28]);
|
|
|
|
strcat(opcode, "s");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
fmt_fourop_flt(ctx->instr_str, opcode, rs, ra, rc, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 29: /* fmadds */
|
|
|
|
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[29]);
|
|
|
|
strcat(opcode, "s");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
fmt_fourop_flt(ctx->instr_str, opcode, rs, ra, rc, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 30: /* fnmsubs */
|
|
|
|
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[30]);
|
|
|
|
strcat(opcode, "s");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
fmt_fourop_flt(ctx->instr_str, opcode, rs, ra, rc, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 31: /* fnmadds */
|
|
|
|
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[31]);
|
|
|
|
strcat(opcode, "s");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
fmt_fourop_flt(ctx->instr_str, opcode, rs, ra, rc, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_group63(PPCDisasmContext* ctx) {
|
2020-02-06 05:11:59 +00:00
|
|
|
char opcode[10] = "";
|
|
|
|
|
|
|
|
auto rc = (ctx->instr_code >> 6) & 0x1F;
|
|
|
|
auto rb = (ctx->instr_code >> 11) & 0x1F;
|
|
|
|
auto ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
auto rs = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
int ext_opc = (ctx->instr_code >> 1) & 0x3FF; /* extract extended opcode */
|
2020-02-06 05:11:59 +00:00
|
|
|
bool rc_set = ctx->instr_code & 1;
|
|
|
|
|
|
|
|
switch (ext_opc & 0x1F) {
|
|
|
|
case 18: /* floating point division */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "fdiv");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc != 0)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_threeop_flt(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 20: /* floating point subtract */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "fsub");
|
2020-02-06 05:11:59 +00:00
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc != 0)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_threeop_flt(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 21: /* floating point addition */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "fadd");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc != 0)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_threeop_flt(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 22: /* floating point square root */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "fsqrt");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2021-01-24 04:30:29 +00:00
|
|
|
if ((rc != 0) || (ra != 0))
|
2020-02-06 05:11:59 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_threeop_flt(ctx->instr_str, opcode, rs, ra, rb);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
2020-02-07 03:26:45 +00:00
|
|
|
case 23: /* fsel */
|
2020-02-14 14:58:30 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[23]);
|
2020-02-07 03:26:45 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-08 20:54:45 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-07 03:26:45 +00:00
|
|
|
|
2020-02-14 14:58:30 +00:00
|
|
|
fmt_fourop_flt(ctx->instr_str, opcode, rs, ra, rc, rb);
|
2020-02-07 03:26:45 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
2020-02-06 05:11:59 +00:00
|
|
|
case 25: /* fmul */
|
|
|
|
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[25]);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rb != 0)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
|
|
|
fmt_threeop_flt(ctx->instr_str, opcode, rs, ra, rc);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 26: /* frsqrte */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "frsqrte");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2021-01-24 04:30:29 +00:00
|
|
|
if ((rc != 0) || (ra != 0))
|
2020-02-06 05:11:59 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
2020-02-14 04:04:14 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, f%d", opcode, rs, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 28: /* fmsub */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[28]);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
fmt_fourop_flt(ctx->instr_str, opcode, rs, ra, rc, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 29: /* fmadd */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[29]);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
fmt_fourop_flt(ctx->instr_str, opcode, rs, ra, rc, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 30: /* fnmsub */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[30]);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
fmt_fourop_flt(ctx->instr_str, opcode, rs, ra, rc, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
case 31: /* fnmadd */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, opc_flt_ext_arith[31]);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
fmt_fourop_flt(ctx->instr_str, opcode, rs, ra, rc, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto fm = (ctx->instr_code >> 17) & 0xFF;
|
|
|
|
|
|
|
|
switch (ext_opc) {
|
|
|
|
case 0: /* fcmpu */
|
|
|
|
if (rs & 3)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
2020-02-14 04:04:14 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d, f%d, f%d", "fcmpu", (rs >> 2), ra, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
|
|
|
case 12: /* frsp */
|
|
|
|
if (ra != 0)
|
|
|
|
opc_illegal(ctx);
|
2021-01-23 01:32:30 +00:00
|
|
|
else {
|
|
|
|
strcpy(opcode, "frsp");
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, f%d", opcode, rs, rb);
|
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
|
|
|
case 14: /* fctiw */
|
|
|
|
if (ra != 0)
|
|
|
|
opc_illegal(ctx);
|
2021-01-24 04:30:29 +00:00
|
|
|
else {
|
|
|
|
strcpy(opcode, "fctiw");
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, f%d", opcode, rs, rb);
|
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
|
|
|
case 15: /* fctiwz */
|
|
|
|
if (ra != 0)
|
|
|
|
opc_illegal(ctx);
|
2021-01-24 04:30:29 +00:00
|
|
|
else {
|
|
|
|
strcpy(opcode, "fctiwz");
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, f%d", opcode, rs, rb);
|
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
|
|
|
case 32: /* fcmpo */
|
|
|
|
if (rs & 3)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
2020-02-14 04:04:14 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d, f%d, f%d", "fcmpo", (rs >> 2), ra, rb);
|
2020-02-07 03:26:45 +00:00
|
|
|
break;
|
|
|
|
case 38: /* mtfsb1 */
|
|
|
|
strcpy(opcode, "mtfsb1");
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
2020-02-14 04:04:14 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%d", opcode, rs);
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
|
|
|
case 40: /* fneg */
|
2020-02-06 14:01:27 +00:00
|
|
|
strcpy(opcode, "fneg");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (rc_set)
|
2020-02-06 14:01:27 +00:00
|
|
|
strcat(opcode, ".");
|
2020-02-06 05:11:59 +00:00
|
|
|
|
|
|
|
if (ra != 0)
|
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
2021-01-24 05:44:14 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, f%d", opcode, rs, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
2020-02-07 14:54:15 +00:00
|
|
|
case 64:
|
|
|
|
strcpy(opcode, "mcrfs");
|
|
|
|
|
2020-02-13 15:00:36 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d, cr%d", opcode, (rs >> 2), (ra >> 2));
|
2020-02-07 14:54:15 +00:00
|
|
|
break;
|
2020-02-07 03:26:45 +00:00
|
|
|
case 70: /* mtfsb0 */
|
|
|
|
strcpy(opcode, "mtfsb0");
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
2021-01-24 05:44:14 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8s%d", opcode, rs);
|
2020-02-07 03:26:45 +00:00
|
|
|
break;
|
2020-02-06 05:11:59 +00:00
|
|
|
case 72: /* fmr */
|
|
|
|
if (ra != 0)
|
|
|
|
opc_illegal(ctx);
|
2021-01-24 05:44:14 +00:00
|
|
|
else {
|
|
|
|
strcpy(opcode, "fmr");
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, f%d", opcode, rs, rb);
|
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
|
|
|
case 134: /* mtfsfi */
|
|
|
|
if (ra != 0)
|
|
|
|
opc_illegal(ctx);
|
2021-01-24 05:44:14 +00:00
|
|
|
else {
|
|
|
|
strcpy(opcode, "mtfsfi");
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
ctx->instr_str = my_sprintf("%-8scr%d, %d", opcode, (rs >> 2), (rb >> 1));
|
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
|
|
|
case 136: /* fnabs */
|
|
|
|
if (ra != 0)
|
|
|
|
opc_illegal(ctx);
|
2021-01-24 05:44:14 +00:00
|
|
|
else {
|
|
|
|
strcpy(opcode, "fnabs");
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, f%d", opcode, rs, rb);
|
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
|
|
|
case 264: /* fabs */
|
|
|
|
if (ra != 0)
|
|
|
|
opc_illegal(ctx);
|
2021-01-24 05:44:14 +00:00
|
|
|
else {
|
|
|
|
strcpy(opcode, "fabs");
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d, f%d", opcode, rs, rb);
|
|
|
|
}
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
2020-02-07 14:54:15 +00:00
|
|
|
case 583: /* mffs */
|
|
|
|
strcpy(opcode, "mffs");
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
2021-01-24 04:30:29 +00:00
|
|
|
if ((ra != 0) || (rb != 0))
|
2020-02-06 05:11:59 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
else
|
2020-02-14 04:04:14 +00:00
|
|
|
ctx->instr_str = my_sprintf("%-8sf%d", opcode, rs);
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
|
|
|
case 711: /* mtfsf */
|
2021-01-24 05:44:14 +00:00
|
|
|
strcpy(opcode, "mtfsf");
|
|
|
|
|
|
|
|
if (rc_set)
|
|
|
|
strcat(opcode, ".");
|
|
|
|
|
|
|
|
ctx->instr_str = my_sprintf("%-8s%d, f%d", opcode, fm, rb);
|
2020-02-06 05:11:59 +00:00
|
|
|
break;
|
2020-01-22 11:28:42 +00:00
|
|
|
default:
|
|
|
|
opc_illegal(ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_intldst(PPCDisasmContext* ctx) {
|
2020-01-29 02:29:10 +00:00
|
|
|
int32_t opcode = (ctx->instr_code >> 26) - 32;
|
2020-05-12 18:55:45 +00:00
|
|
|
int32_t ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
int32_t rd = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
int32_t imm = SIGNEXT(ctx->instr_code & 0xFFFF, 15);
|
2020-01-29 02:29:10 +00:00
|
|
|
|
|
|
|
/* ra = 0 is forbidden for loads and stores with update */
|
|
|
|
/* ra = rd is forbidden for loads with update */
|
2020-05-12 18:55:45 +00:00
|
|
|
if (((opcode < 14) && (opcode & 5) == 1 && ra == rd) || ((opcode & 1) && !ra)) {
|
2020-01-29 02:29:10 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ra) {
|
2020-05-12 18:55:45 +00:00
|
|
|
ctx->instr_str = my_sprintf(
|
|
|
|
"%-8sr%d, %s0x%X(r%d)", opc_int_ldst[opcode], rd, ((imm < 0) ? "-" : ""), abs(imm), ra);
|
|
|
|
} else {
|
|
|
|
ctx->instr_str = my_sprintf(
|
|
|
|
"%-8sr%d, %s0x%X", opc_int_ldst[opcode], rd, ((imm < 0) ? "-" : ""), abs(imm));
|
2020-01-29 02:29:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
void opc_fltldst(PPCDisasmContext* ctx) {
|
2020-02-02 19:54:44 +00:00
|
|
|
int32_t opcode = (ctx->instr_code >> 26) - 48;
|
2020-05-12 18:55:45 +00:00
|
|
|
int32_t ra = (ctx->instr_code >> 16) & 0x1F;
|
|
|
|
int32_t rd = (ctx->instr_code >> 21) & 0x1F;
|
|
|
|
int32_t imm = SIGNEXT(ctx->instr_code & 0xFFFF, 15);
|
2020-02-02 19:54:44 +00:00
|
|
|
|
|
|
|
/* ra = 0 is forbidden for loads and stores with update */
|
|
|
|
/* ra = rd is forbidden for loads with update */
|
2020-05-12 18:55:45 +00:00
|
|
|
if ((((opcode == 1) || (opcode == 3)) && ra == rd) || ((opcode & 1) && !ra)) {
|
2020-02-02 19:54:44 +00:00
|
|
|
opc_illegal(ctx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ra) {
|
2020-05-12 18:55:45 +00:00
|
|
|
ctx->instr_str = my_sprintf(
|
|
|
|
"%-8sf%d, %s0x%X(r%d)", opc_flt_ldst[opcode], rd, ((imm < 0) ? "-" : ""), abs(imm), ra);
|
|
|
|
} else {
|
|
|
|
ctx->instr_str = my_sprintf(
|
|
|
|
"%-8sf%d, %s0x%X", opc_flt_ldst[opcode], rd, ((imm < 0) ? "-" : ""), abs(imm));
|
2020-02-02 19:54:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-22 11:28:42 +00:00
|
|
|
/** main dispatch table. */
|
|
|
|
static std::function<void(PPCDisasmContext*)> OpcodeDispatchTable[64] = {
|
2020-05-12 18:55:45 +00:00
|
|
|
opc_illegal, opc_illegal, opc_illegal, opc_twi, opc_group4, opc_illegal, opc_illegal,
|
|
|
|
opc_ar_im, opc_ar_im, power_dozi, opc_cmp_i_li, opc_cmp_i_li, opc_ar_im, opc_ar_im,
|
|
|
|
opc_ar_im, opc_ar_im, opc_bcx, opc_sc, opc_bx, opc_group19, opc_rlwimi,
|
|
|
|
opc_rlwinm, opc_rlmi, opc_rlwnm, opc_bool_im, opc_bool_im, opc_bool_im, opc_bool_im,
|
|
|
|
opc_bool_im, opc_bool_im, opc_illegal, opc_group31, opc_intldst, opc_intldst, opc_intldst,
|
|
|
|
opc_intldst, opc_intldst, opc_intldst, opc_intldst, opc_intldst, opc_intldst, opc_intldst,
|
|
|
|
opc_intldst, opc_intldst, opc_intldst, opc_intldst, opc_intldst, opc_intldst, opc_fltldst,
|
|
|
|
opc_fltldst, opc_fltldst, opc_fltldst, opc_fltldst, opc_fltldst, opc_fltldst, opc_fltldst,
|
|
|
|
opc_illegal, opc_illegal, opc_illegal, opc_group59, opc_illegal, opc_illegal, opc_illegal,
|
|
|
|
opc_group63};
|
|
|
|
|
|
|
|
string disassemble_single(PPCDisasmContext* ctx) {
|
2020-02-23 14:24:49 +00:00
|
|
|
if (ctx->instr_addr & 3) {
|
|
|
|
throw std::invalid_argument(string("PPC instruction address must be a multiply of 4!"));
|
|
|
|
}
|
|
|
|
|
2020-01-22 11:28:42 +00:00
|
|
|
OpcodeDispatchTable[ctx->instr_code >> 26](ctx);
|
|
|
|
|
|
|
|
ctx->instr_addr += 4;
|
|
|
|
|
|
|
|
return ctx->instr_str;
|
2020-02-16 22:00:58 +00:00
|
|
|
}
|