wdc-utils/disassembler.h

94 lines
1.8 KiB
C
Raw Normal View History

2016-12-25 05:04:17 +00:00
#ifndef __disassembler_h__
#define __disassembler_h__
#include <stdint.h>
#include <string>
2017-01-02 19:14:51 +00:00
#include <functional>
2016-12-25 05:04:17 +00:00
class disassembler {
public:
disassembler() = default;
2016-12-26 16:15:23 +00:00
void operator()(uint8_t byte);
void operator()(const std::string &expr, unsigned size);
2016-12-25 05:04:17 +00:00
template<class Iter>
2016-12-26 16:15:23 +00:00
void operator()(Iter begin, Iter end) { while (begin != end) code(*begin++); }
2016-12-25 05:04:17 +00:00
template<class T>
2016-12-26 16:15:23 +00:00
void operator()(const T &t) { code(std::begin(t), std::end(t)); }
2016-12-25 20:01:00 +00:00
2016-12-25 05:04:17 +00:00
bool m() const { return _flags & 0x20; }
bool x() const { return _flags & 0x10; }
void set_m(bool x) {
if (x) _flags |= 0x20;
2016-12-25 07:42:28 +00:00
else _flags &= ~0x20;
2016-12-25 05:04:17 +00:00
}
void set_x(bool x) {
if (x) _flags |= 0x10;
2016-12-25 07:42:28 +00:00
else _flags &= ~0x10;
2016-12-25 05:04:17 +00:00
}
2016-12-26 16:15:23 +00:00
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; } }
2016-12-25 05:04:17 +00:00
void flush();
2016-12-26 16:15:23 +00:00
2017-01-02 19:14:51 +00:00
void set_label_callback(std::function<int32_t(int32_t)> callback) {
_label_callback = callback;
_next_label = -1;
if (_label_callback) _next_label = _label_callback(-1);
}
void recalc_next_label() {
if (_label_callback) _next_label = _label_callback(-1);
else _next_label = -1;
}
2016-12-26 16:15:23 +00:00
2016-12-25 05:04:17 +00:00
private:
void reset();
void dump();
void dump(const std::string &expr, unsigned size);
void print();
void print(const std::string &expr);
void print_prefix();
void print_suffix();
2017-01-02 19:14:51 +00:00
std::string prefix();
std::string suffix();
2016-12-25 20:01:00 +00:00
void hexdump();
2017-01-02 19:14:51 +00:00
void hexdump(std::string &);
2016-12-25 20:01:00 +00:00
2016-12-25 05:04:17 +00:00
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;
2016-12-25 20:01:00 +00:00
2016-12-26 16:15:23 +00:00
bool _code = true;
2017-01-02 19:14:51 +00:00
int32_t _next_label = -1;
void check_labels();
std::function<int32_t(int32_t)> _label_callback;
2016-12-25 05:04:17 +00:00
};
2017-01-02 19:14:51 +00:00
#endif