Core commit. Compile and run on the OpenPandora
[mupen64plus-pandora.git] / source / mupen64plus-core / src / debugger / dbg_memory.h
diff --git a/source/mupen64plus-core/src/debugger/dbg_memory.h b/source/mupen64plus-core/src/debugger/dbg_memory.h
new file mode 100644 (file)
index 0000000..fb8b22f
--- /dev/null
@@ -0,0 +1,112 @@
+/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+ *   Mupen64plus - dbg_memory.h                                            *
+ *   Mupen64Plus homepage: http://code.google.com/p/mupen64plus/           *
+ *   Copyright (C) 2008 DarkJeztr                                          *
+ *   Copyright (C) 2002 davFr                                              *
+ *                                                                         *
+ *   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; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   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 for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
+ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+
+#ifndef __DEBUGGER_MEMORY_H__
+#define __DEBUGGER_MEMORY_H__
+
+#define MAX_DISASSEMBLY 64
+
+/* The following three macros create all the function calls for catching memory breakpoints
+ * these do not occur until after the PC is incremented, but jumps & branches are not yet taken.
+ */
+
+#define MEMBREAKREAD(name,size) \
+    void name##_break(void) { \
+        check_breakpoints_on_mem_access((PC->addr)-0x4, address, size, BPT_FLAG_ENABLED | BPT_FLAG_READ); \
+        name (); \
+    }
+
+#define MEMBREAKWRITE(name,size) \
+    void name##_break(void) { \
+        check_breakpoints_on_mem_access((PC->addr)-0x4, address, size, BPT_FLAG_ENABLED | BPT_FLAG_WRITE); \
+        name (); \
+    }
+
+#define MEMBREAKALL(name) \
+    MEMBREAKREAD( read_##name , 4); \
+    MEMBREAKREAD( read_##name##b , 1); \
+    MEMBREAKREAD( read_##name##h , 2); \
+    MEMBREAKREAD( read_##name##d , 8); \
+    MEMBREAKWRITE( write_##name , 4); \
+    MEMBREAKWRITE( write_##name##b , 1); \
+    MEMBREAKWRITE( write_##name##h , 2); \
+    MEMBREAKWRITE( write_##name##d , 8);
+
+#define MEMBREAKALL_local(name) \
+    static MEMBREAKREAD( read_##name , 4); \
+    static MEMBREAKREAD( read_##name##b , 1); \
+    static MEMBREAKREAD( read_##name##h , 2); \
+    static MEMBREAKREAD( read_##name##d , 8); \
+    static MEMBREAKWRITE( write_##name , 4); \
+    static MEMBREAKWRITE( write_##name##b , 1); \
+    static MEMBREAKWRITE( write_##name##h , 2); \
+    static MEMBREAKWRITE( write_##name##d , 8);
+
+void init_host_disassembler(void);
+
+char* get_recompiled_opcode( uint32 address, int index );
+char* get_recompiled_args( uint32 address, int index );
+void* get_recompiled_addr( uint32 address, int index );
+int get_num_recompiled( uint32 address );
+int get_has_recompiled( uint32 address );
+
+uint64 read_memory_64(uint32 addr);
+uint64 read_memory_64_unaligned(uint32 addr);
+void write_memory_64(uint32 addr, uint64 value);
+void write_memory_64_unaligned(uint32 addr, uint64 value);
+uint32 read_memory_32(uint32);
+uint32 read_memory_32_unaligned(uint32 addr);
+void write_memory_32(uint32, uint32);
+void write_memory_32_unaligned(uint32 addr, uint32 value);
+uint16 read_memory_16(uint32 addr);
+void write_memory_16(uint32 addr, uint16 value);
+uint8 read_memory_8(uint32 addr);
+void write_memory_8(uint32 addr, uint8 value);
+uint32 get_memory_flags(uint32);
+int get_memory_type(uint32);
+
+void activate_memory_break_read(uint32 addr);
+void deactivate_memory_break_read(uint32 addr);
+void activate_memory_break_write(uint32 addr);
+void deactivate_memory_break_write(uint32 addr);
+
+/* Following are the prototypes for the memory breakpoint functions */
+void read_rdram_break(void);
+void read_rdramb_break(void);
+void read_rdramh_break(void);
+void read_rdramd_break(void);
+void read_rdramFB_break(void);
+void read_rdramFBb_break(void);
+void read_rdramFBh_break(void);
+void read_rdramFBd_break(void);
+
+void write_rdram_break(void);
+void write_rdramb_break(void);
+void write_rdramh_break(void);
+void write_rdramd_break(void);
+void write_rdramFB_break(void);
+void write_rdramFBb_break(void);
+void write_rdramFBh_break(void);
+void write_rdramFBd_break(void);
+
+#endif /* __DEBUGGER_MEMORY_H__ */
+