mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-23 04:11:12 +00:00
tcg: Remove CPUClass::handle_mmu_fault
This hook is now completely replaced by tlb_fill. Backports commit 69963f5709a0645934c169784820d0bee22208ba from qemu
This commit is contained in:
parent
fcaa52c1fe
commit
e736ef3238
|
@ -110,7 +110,6 @@ struct TranslationBlock;
|
||||||
* This always includes at least the program counter; some targets
|
* This always includes at least the program counter; some targets
|
||||||
* will need to do more. If this hook is not implemented then the
|
* will need to do more. If this hook is not implemented then the
|
||||||
* default is to call @set_pc(tb->pc).
|
* default is to call @set_pc(tb->pc).
|
||||||
* @handle_mmu_fault: Callback for handling an MMU fault.
|
|
||||||
* @tlb_fill: Callback for handling a softmmu tlb miss or user-only
|
* @tlb_fill: Callback for handling a softmmu tlb miss or user-only
|
||||||
* address fault. For system mode, if the access is valid, call
|
* address fault. For system mode, if the access is valid, call
|
||||||
* tlb_set_page and return true; if the access is invalid, and
|
* tlb_set_page and return true; if the access is invalid, and
|
||||||
|
@ -168,8 +167,6 @@ typedef struct CPUClass {
|
||||||
Error **errp);
|
Error **errp);
|
||||||
void (*set_pc)(CPUState *cpu, vaddr value);
|
void (*set_pc)(CPUState *cpu, vaddr value);
|
||||||
void (*synchronize_from_tb)(CPUState *cpu, struct TranslationBlock *tb);
|
void (*synchronize_from_tb)(CPUState *cpu, struct TranslationBlock *tb);
|
||||||
int (*handle_mmu_fault)(CPUState *cpu, vaddr address, int size, int rw,
|
|
||||||
int mmu_index);
|
|
||||||
bool (*tlb_fill)(CPUState *cpu, vaddr address, int size,
|
bool (*tlb_fill)(CPUState *cpu, vaddr address, int size,
|
||||||
MMUAccessType access_type, int mmu_idx,
|
MMUAccessType access_type, int mmu_idx,
|
||||||
bool probe, uintptr_t retaddr);
|
bool probe, uintptr_t retaddr);
|
||||||
|
|
Loading…
Reference in a new issue