1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/*********************************************************************
dvmemory.h
Memory debugger view.
***************************************************************************/
#ifndef __DVMEMORY_H__
#define __DVMEMORY_H__
#include "softfloat/mamesf.h"
#include "softfloat/softfloat.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// a memory view_source
class debug_view_memory_source : public debug_view_source
{
friend class debug_view_memory;
debug_view_memory_source(const char *name, address_space &space);
debug_view_memory_source(const char *name, memory_region ®ion);
debug_view_memory_source(const char *name, void *base, int element_size, int num_elements);
public:
address_space *space() const { return m_space; }
private:
address_space *m_space; // address space we reference (if any)
device_memory_interface *m_memintf; // pointer to the memory interface of the device
void * m_base; // pointer to memory base
offs_t m_length; // length of memory
offs_t m_offsetxor; // XOR to apply to offsets
endianness_t m_endianness; // endianness of memory
uint8_t m_prefsize; // preferred bytes per chunk
};
// debug view for memory
class debug_view_memory : public debug_view
{
friend resource_pool_object<debug_view_memory>::~resource_pool_object();
friend class debug_view_manager;
// construction/destruction
debug_view_memory(running_machine &machine, debug_view_osd_update_func osdupdate, void *osdprivate);
public:
// getters
const char *expression() const { return m_expression.string(); }
int get_data_format() { flush_updates(); return m_data_format; }
uint32_t chunks_per_row() { flush_updates(); return m_chunks_per_row; }
bool reverse() const { return m_reverse_view; }
bool ascii() const { return m_ascii_view; }
bool physical() const { return m_no_translation; }
offs_t addressAtCursorPosition(const debug_view_xy& pos) { return get_cursor_pos(pos).m_address; }
// setters
void set_expression(const char *expression);
void set_chunks_per_row(uint32_t rowchunks);
void set_data_format(int format); // 1-8 current values 9 32bit floating point
void set_reverse(bool reverse);
void set_ascii(bool reverse);
void set_physical(bool physical);
protected:
// view overrides
virtual void view_notify(debug_view_notification type) override;
virtual void view_update() override;
virtual void view_char(int chval) override;
virtual void view_click(const int button, const debug_view_xy& pos) override;
private:
struct cursor_pos
{
cursor_pos(offs_t address = 0, uint8_t shift = 0) : m_address(address), m_shift(shift) { }
offs_t m_address;
uint8_t m_shift;
};
// internal helpers
void enumerate_sources();
void recompute();
bool needs_recompute();
// cursor position management
cursor_pos get_cursor_pos(const debug_view_xy& cursor);
void set_cursor_pos(cursor_pos pos);
cursor_pos begin_update_and_get_cursor_pos() { begin_update(); return get_cursor_pos(m_cursor); }
void end_update_and_set_cursor_pos(cursor_pos pos) { set_cursor_pos(pos); end_update(); }
// memory access
bool read(uint8_t size, offs_t offs, uint64_t &data);
void write(uint8_t size, offs_t offs, uint64_t data);
bool read(uint8_t size, offs_t offs, floatx80 &data);
// internal state
debug_view_expression m_expression; // expression describing the start address
uint32_t m_chunks_per_row; // number of chunks displayed per line
uint8_t m_bytes_per_chunk; // bytes per chunk
int m_data_format; // 1-8 current values 9 32bit floating point
bool m_reverse_view; // reverse-endian view?
bool m_ascii_view; // display ASCII characters?
bool m_no_translation; // don't run addresses through the cpu translation hook
bool m_edit_enabled; // can modify contents ?
offs_t m_maxaddr; // (derived) maximum address to display
uint32_t m_bytes_per_row; // (derived) number of bytes displayed per line
uint32_t m_byte_offset; // (derived) offset of starting visible byte
std::string m_addrformat; // (derived) format string to use to print addresses
struct section
{
bool contains(int x) const { return x >= m_pos && x < m_pos + m_width; }
int32_t m_pos; /* starting position */
int32_t m_width; /* width of this section */
};
section m_section[3]; // (derived) 3 sections to manage
struct memory_view_pos
{
uint8_t m_spacing; /* spacing between each entry */
uint8_t m_shift[24]; /* shift for each character */
};
static const memory_view_pos s_memory_pos_table[12]; // table for rendering at different data formats
// constants
static const int MEM_MAX_LINE_WIDTH = 1024;
};
#endif
|