|
@@ -104,11 +104,6 @@ struct SysemuCPUOps;
|
|
|
* If the target behaviour here is anything other than "set
|
|
|
* the PC register to the value passed in" then the target must
|
|
|
* also implement the synchronize_from_tb hook.
|
|
|
- * @get_phys_page_debug: Callback for obtaining a physical address.
|
|
|
- * @get_phys_page_attrs_debug: Callback for obtaining a physical address and the
|
|
|
- * associated memory transaction attributes to use for the access.
|
|
|
- * CPUs which use memory transaction attributes should implement this
|
|
|
- * instead of get_phys_page_debug.
|
|
|
* @gdb_read_register: Callback for letting GDB read a register.
|
|
|
* @gdb_write_register: Callback for letting GDB write a register.
|
|
|
* @gdb_num_core_regs: Number of core registers accessible to GDB.
|
|
@@ -147,9 +142,6 @@ struct CPUClass {
|
|
|
void (*get_memory_mapping)(CPUState *cpu, MemoryMappingList *list,
|
|
|
Error **errp);
|
|
|
void (*set_pc)(CPUState *cpu, vaddr value);
|
|
|
- hwaddr (*get_phys_page_debug)(CPUState *cpu, vaddr addr);
|
|
|
- hwaddr (*get_phys_page_attrs_debug)(CPUState *cpu, vaddr addr,
|
|
|
- MemTxAttrs *attrs);
|
|
|
int (*gdb_read_register)(CPUState *cpu, GByteArray *buf, int reg);
|
|
|
int (*gdb_write_register)(CPUState *cpu, uint8_t *buf, int reg);
|
|
|
|