mirror of
https://github.com/ksherlock/wdc-utils.git
synced 2024-11-15 12:06:57 +00:00
111 lines
2.3 KiB
C++
111 lines
2.3 KiB
C++
#ifndef __disassembler_h__
|
|
#define __disassembler_h__
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
|
|
class disassembler {
|
|
|
|
public:
|
|
disassembler() = default;
|
|
virtual ~disassembler();
|
|
|
|
void operator()(uint8_t byte);
|
|
void operator()(const std::string &expr, unsigned size);
|
|
|
|
template<class Iter>
|
|
void operator()(Iter begin, Iter end) { while (begin != end) (*this)(*begin++); }
|
|
|
|
template<class T>
|
|
void operator()(const T &t) { (*this)(std::begin(t), std::end(t)); }
|
|
|
|
void space(unsigned bytes);
|
|
|
|
bool m() const { return _flags & 0x20; }
|
|
bool x() const { return _flags & 0x10; }
|
|
|
|
void set_m(bool x) {
|
|
if (x) _flags |= 0x20;
|
|
else _flags &= ~0x20;
|
|
}
|
|
|
|
void set_x(bool x) {
|
|
if (x) _flags |= 0x10;
|
|
else _flags &= ~0x10;
|
|
}
|
|
|
|
uint32_t pc() const { return _pc; }
|
|
void set_pc(uint32_t pc) { if (_pc != pc) { flush(); _pc = pc; } }
|
|
|
|
bool code() const { return _code; }
|
|
void set_code(bool code) { if (_code != code) { flush(); _code = code; } }
|
|
|
|
void flush();
|
|
|
|
|
|
void recalc_next_label() {
|
|
_next_label = next_label(-1);
|
|
}
|
|
|
|
static std::string to_x(uint32_t value, unsigned bytes, char prefix = 0);
|
|
|
|
static void emit(const std::string &label);
|
|
static void emit(const std::string &label, const std::string &opcode);
|
|
static void emit(const std::string &label, const std::string &opcode, const std::string &operand);
|
|
|
|
protected:
|
|
|
|
|
|
virtual std::pair<std::string, std::string> format_data(unsigned size, const uint8_t *data);
|
|
virtual std::pair<std::string, std::string> format_data(unsigned size, const std::string &);
|
|
|
|
|
|
void set_inline_data(int count) {
|
|
flush();
|
|
_code = count ? false : true;
|
|
_inline_data = count;
|
|
}
|
|
|
|
virtual int32_t next_label(int32_t pc) {
|
|
return -1;
|
|
}
|
|
|
|
virtual void event(uint8_t opcode, uint32_t operand) {}
|
|
|
|
|
|
private:
|
|
|
|
void reset();
|
|
|
|
void dump();
|
|
void dump(const std::string &expr, unsigned size);
|
|
|
|
void print();
|
|
void print(const std::string &expr);
|
|
|
|
std::string prefix();
|
|
std::string suffix();
|
|
|
|
void hexdump();
|
|
void hexdump(std::string &);
|
|
|
|
unsigned _st = 0;
|
|
uint8_t _op = 0;
|
|
unsigned _size = 0;
|
|
unsigned _mode = 0;
|
|
uint8_t _bytes[4];
|
|
unsigned _flags = 0x30;
|
|
unsigned _pc = 0;
|
|
unsigned _arg = 0;
|
|
|
|
bool _code = true;
|
|
int _inline_data = 0;
|
|
int32_t _next_label = -1;
|
|
|
|
bool _orca = true;
|
|
|
|
void check_labels();
|
|
};
|
|
|
|
#endif
|