X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=cpu-defs.h;h=665158a381de6f60a200cfd75233d0f9f6b01594;hb=7ef4da1c3a753888e2678388150f1b846b025168;hp=e095f8566f6b8c631049ec3f178747230020c0f9;hpb=5a1e3cfcb0f1b7108542d04fababd433938bf8fe;p=qemu diff --git a/cpu-defs.h b/cpu-defs.h index e095f85..665158a 100644 --- a/cpu-defs.h +++ b/cpu-defs.h @@ -80,7 +80,8 @@ typedef unsigned long ram_addr_t; #define TB_JMP_CACHE_BITS 12 #define TB_JMP_CACHE_SIZE (1 << TB_JMP_CACHE_BITS) -#define CPU_TLB_SIZE 256 +#define CPU_TLB_BITS 8 +#define CPU_TLB_SIZE (1 << CPU_TLB_BITS) typedef struct CPUTLBEntry { /* bit 31 to TARGET_PAGE_BITS : virtual address @@ -89,7 +90,9 @@ typedef struct CPUTLBEntry { bit 3 : indicates that the entry is invalid bit 2..0 : zero */ - target_ulong address; + target_ulong addr_read; + target_ulong addr_write; + target_ulong addr_code; /* addend to virtual address to get physical address */ target_phys_addr_t addend; } CPUTLBEntry; @@ -105,8 +108,7 @@ typedef struct CPUTLBEntry { target_ulong mem_write_vaddr; /* target virtual addr at which the \ memory was written */ \ /* 0 = kernel, 1 = user */ \ - CPUTLBEntry tlb_read[2][CPU_TLB_SIZE]; \ - CPUTLBEntry tlb_write[2][CPU_TLB_SIZE]; \ + CPUTLBEntry tlb_table[2][CPU_TLB_SIZE]; \ struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE]; \ \ /* from this point: preserved by CPU reset */ \