Merge pull request #494 from lioncash/pldw

A32: Handle PLDW
This commit is contained in:
Merry 2019-05-03 21:09:13 +01:00 committed by MerryMage
commit c4fb7cf540
6 changed files with 50 additions and 10 deletions

View file

@ -36,6 +36,8 @@ enum class Exception {
Breakpoint,
/// A PLD instruction was executed.
PreloadData,
/// A PLDW instruction was executed.
PreloadDataWithIntentToWrite,
};
/// These function pointers may be inserted into compiled code.

View file

@ -94,7 +94,8 @@ INST(arm_UXTAB16, "UXTAB16", "cccc01101100nnnnddddrr000111mmmm
INST(arm_UXTAH, "UXTAH", "cccc01101111nnnnddddrr000111mmmm") // v6
// Hint instructions
INST(arm_PLD, "PLD", "111101-1-101----1111------------") // v5E; different on v7
INST(arm_PLD_imm, "PLD (imm)", "11110101uz01nnnn1111iiiiiiiiiiii") // v5E for PLD; v7 for PLDW
INST(arm_PLD_reg, "PLD (reg)", "11110111uz01nnnn1111iiiiitt0mmmm") // v5E for PLD; v7 for PLDW
INST(arm_SEV, "SEV", "----0011001000001111000000000100") // v6K
INST(arm_WFE, "WFE", "----0011001000001111000000000010") // v6K
INST(arm_WFI, "WFI", "----0011001000001111000000000011") // v6K

View file

@ -436,11 +436,30 @@ public:
}
// Hint instructions
std::string arm_PLD() { return "pld <unimplemented>"; }
std::string arm_SEV() { return "sev <unimplemented>"; }
std::string arm_WFE() { return "wfe <unimplemented>"; }
std::string arm_WFI() { return "wfi <unimplemented>"; }
std::string arm_YIELD() { return "yield <unimplemented>"; }
std::string arm_PLD_imm(bool add, bool R, Reg n, Imm<12> imm12) {
const char sign = add ? '+' : '-';
const char* const w = R ? "" : "w";
return fmt::format("pld{} [{}, #{}{:x}]", w, n, sign, imm12.ZeroExtend());
}
std::string arm_PLD_reg(bool add, bool R, Reg n, Imm<5> imm5, ShiftType shift, Reg m) {
const char sign = add ? '+' : '-';
const char* const w = R ? "" : "w";
return fmt::format("pld{} [{}, {}{}{}]", w, n, sign, m, ShiftStr(shift, imm5));
}
std::string arm_SEV() {
return "sev";
}
std::string arm_WFE() {
return "wfe";
}
std::string arm_WFI() {
return "wfi";
}
std::string arm_YIELD() {
return "yield";
}
// Load/Store instructions
std::string arm_LDR_lit(Cond cond, bool U, Reg t, Imm<12> imm12) {

View file

@ -9,8 +9,24 @@
namespace Dynarmic::A32 {
bool ArmTranslatorVisitor::arm_PLD() {
return RaiseException(Exception::PreloadData);
bool ArmTranslatorVisitor::arm_PLD_imm([[maybe_unused]] bool add,
bool R,
[[maybe_unused]] Reg n,
[[maybe_unused]] Imm<12> imm12) {
const auto exception = R ? Exception::PreloadData
: Exception::PreloadDataWithIntentToWrite;
return RaiseException(exception);
}
bool ArmTranslatorVisitor::arm_PLD_reg([[maybe_unused]] bool add,
bool R,
[[maybe_unused]] Reg n,
[[maybe_unused]] Imm<5> imm5,
[[maybe_unused]] ShiftType shift,
[[maybe_unused]] Reg m) {
const auto exception = R ? Exception::PreloadData
: Exception::PreloadDataWithIntentToWrite;
return RaiseException(exception);
}
bool ArmTranslatorVisitor::arm_SEV() {

View file

@ -164,7 +164,8 @@ struct ArmTranslatorVisitor final {
bool arm_UXTH(Cond cond, Reg d, SignExtendRotation rotate, Reg m);
// Hint instructions
bool arm_PLD();
bool arm_PLD_imm(bool add, bool R, Reg n, Imm<12> imm12);
bool arm_PLD_reg(bool add, bool R, Reg n, Imm<5> imm5, ShiftType shift, Reg m);
bool arm_SEV();
bool arm_WFE();
bool arm_WFI();

View file

@ -98,7 +98,8 @@ u32 GenRandomInst(u32 pc, bool is_last_inst) {
"arm_LDM_eret", "arm_LDM_usr",
"arm_STM_usr",
// Hint instructions
"arm_NOP", "arm_PLD", "arm_SEV", "arm_WFE", "arm_WFI", "arm_YIELD",
"arm_NOP", "arm_PLD_imm", "arm_PLD_reg", "arm_SEV",
"arm_WFE", "arm_WFI", "arm_YIELD",
// E, T, J
"arm_BLX_reg", "arm_BLX_imm", "arm_BXJ", "arm_SETEND",
// Coprocessor