mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-19 10:57:48 +02:00
PrintRegValue returned "N/A" for the VFPU category, and CtrlRegisterList had its WM_VSCROLL case commented out, so only the rows that fit in the window were reachable - about a quarter of the 128 VFPU registers. Print the float the same way the FPU tab does, give the list a real scrollbar with mouse wheel support, keep the keyboard selection in view, and reset the position when switching tabs. The category header hit test now uses the client rect so the tab boundaries match what's drawn once the scrollbar takes its share of the width. KernelThreadDebugInterface gets the same one-line fix for parity.
129 lines
3.4 KiB
C++
129 lines
3.4 KiB
C++
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
// 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, version 2.0 or later versions.
|
|
|
|
// 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 2.0 for more details.
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
// Official git repository and contact information can be found at
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "Common/Math/expression_parser.h"
|
|
#include "Core/MIPS/MIPS.h"
|
|
#include "Core/Debugger/DebugInterface.h"
|
|
|
|
class MIPSDebugInterface : public DebugInterface {
|
|
private:
|
|
MIPSState *cpu;
|
|
public:
|
|
MIPSDebugInterface(MIPSState *_cpu) { cpu = _cpu; }
|
|
int getInstructionSize(int instruction) { return 4; }
|
|
bool isAlive();
|
|
bool isBreakpoint(unsigned int address);
|
|
void setBreakpoint(unsigned int address);
|
|
void clearBreakpoint(unsigned int address);
|
|
void clearAllBreakpoints();
|
|
void toggleBreakpoint(unsigned int address);
|
|
unsigned int readMemory(unsigned int address) const;
|
|
int getColor(unsigned int address, bool darkMode) const;
|
|
|
|
u32 GetGPR32Value(int reg) const override { return cpu->r[reg]; }
|
|
float GetFPR32Value(int reg) const { return cpu->f[reg]; }
|
|
void SetGPR32Value(int reg, u32 value) { cpu->r[reg] = value; }
|
|
|
|
u32 GetPC() const override { return cpu->pc; }
|
|
u32 GetRA() const override { return cpu->r[MIPS_REG_RA]; }
|
|
u32 GetFPCond() const override { return cpu->fpcond; }
|
|
void SetPC(u32 _pc) override { cpu->pc = _pc; }
|
|
|
|
static const char *GetCategoryName(int cat) {
|
|
static const char *const names[3] = { "GPR", "FPU", "VFPU" };
|
|
return names[cat];
|
|
}
|
|
static int GetNumCategories() { return 3; }
|
|
static constexpr int GetNumRegsInCategory(int cat) {
|
|
constexpr int r[3] = { 32, 32, 128 };
|
|
return r[cat];
|
|
}
|
|
static std::string GetRegName(int cat, int index);
|
|
|
|
void PrintRegValue(int cat, int index, char *out, size_t outSize) const override {
|
|
switch (cat) {
|
|
case 0: snprintf(out, outSize, "%08X", cpu->r[index]); break;
|
|
case 1: snprintf(out, outSize, "%f", cpu->f[index]); break;
|
|
case 2: snprintf(out, outSize, "%f", cpu->v[voffset[index]]); break;
|
|
}
|
|
}
|
|
|
|
u32 GetHi() const override {
|
|
return cpu->hi;
|
|
}
|
|
|
|
u32 GetLLBit() const override {
|
|
return cpu->llBit;
|
|
}
|
|
|
|
u32 GetLo() const override {
|
|
return cpu->lo;
|
|
}
|
|
|
|
void SetHi(u32 val) override {
|
|
cpu->hi = val;
|
|
}
|
|
|
|
void SetLo(u32 val) override {
|
|
cpu->lo = val;
|
|
}
|
|
|
|
u32 GetRegValue(int cat, int index) const override {
|
|
switch (cat) {
|
|
case 0:
|
|
return cpu->r[index];
|
|
|
|
case 1:
|
|
return cpu->fi[index];
|
|
|
|
case 2:
|
|
return cpu->vi[voffset[index]];
|
|
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
void SetRegValue(int cat, int index, u32 value) override {
|
|
switch (cat) {
|
|
case 0:
|
|
if (index != 0)
|
|
cpu->r[index] = value;
|
|
break;
|
|
|
|
case 1:
|
|
cpu->fi[index] = value;
|
|
break;
|
|
|
|
case 2:
|
|
cpu->vi[voffset[index]] = value;
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
|
|
bool initExpression(const DebugInterface *debug, const char* exp, PostfixExpression& dest);
|
|
bool parseExpression(const DebugInterface *debug, PostfixExpression& exp, u32& dest);
|
|
void DisAsm(u32 pc, char *out, size_t outSize);
|