2 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the Open Source and Linux Lab nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #include "exec/exec-all.h"
30 #include "exec/gdbstub.h"
31 #include "qemu/host-utils.h"
32 #if !defined(CONFIG_USER_ONLY)
33 #include "hw/loader.h"
36 static struct XtensaConfigList
*xtensa_cores
;
38 static void xtensa_core_class_init(ObjectClass
*oc
, void *data
)
40 CPUClass
*cc
= CPU_CLASS(oc
);
41 XtensaCPUClass
*xcc
= XTENSA_CPU_CLASS(oc
);
42 const XtensaConfig
*config
= data
;
46 /* Use num_core_regs to see only non-privileged registers in an unmodified
47 * gdb. Use num_regs to see all registers. gdb modification is required
48 * for that: reset bit 0 in the 'flags' field of the registers definitions
49 * in the gdb/xtensa-config.c inside gdb source tree or inside gdb overlay.
51 cc
->gdb_num_core_regs
= config
->gdb_regmap
.num_regs
;
54 void xtensa_register_core(XtensaConfigList
*node
)
57 .parent
= TYPE_XTENSA_CPU
,
58 .class_init
= xtensa_core_class_init
,
59 .class_data
= (void *)node
->config
,
62 node
->next
= xtensa_cores
;
64 type
.name
= g_strdup_printf("%s-" TYPE_XTENSA_CPU
, node
->config
->name
);
66 g_free((gpointer
)type
.name
);
69 static uint32_t check_hw_breakpoints(CPUXtensaState
*env
)
73 for (i
= 0; i
< env
->config
->ndbreak
; ++i
) {
74 if (env
->cpu_watchpoint
[i
] &&
75 env
->cpu_watchpoint
[i
]->flags
& BP_WATCHPOINT_HIT
) {
76 return DEBUGCAUSE_DB
| (i
<< DEBUGCAUSE_DBNUM_SHIFT
);
82 void xtensa_breakpoint_handler(CPUState
*cs
)
84 XtensaCPU
*cpu
= XTENSA_CPU(cs
);
85 CPUXtensaState
*env
= &cpu
->env
;
87 if (cs
->watchpoint_hit
) {
88 if (cs
->watchpoint_hit
->flags
& BP_CPU
) {
91 cs
->watchpoint_hit
= NULL
;
92 cause
= check_hw_breakpoints(env
);
94 debug_exception_env(env
, cause
);
96 cpu_resume_from_signal(cs
, NULL
);
101 XtensaCPU
*cpu_xtensa_init(const char *cpu_model
)
107 oc
= cpu_class_by_name(TYPE_XTENSA_CPU
, cpu_model
);
112 cpu
= XTENSA_CPU(object_new(object_class_get_name(oc
)));
115 xtensa_irq_init(env
);
117 object_property_set_bool(OBJECT(cpu
), true, "realized", NULL
);
123 void xtensa_cpu_list(FILE *f
, fprintf_function cpu_fprintf
)
125 XtensaConfigList
*core
= xtensa_cores
;
126 cpu_fprintf(f
, "Available CPUs:\n");
127 for (; core
; core
= core
->next
) {
128 cpu_fprintf(f
, " %s\n", core
->config
->name
);
132 hwaddr
xtensa_cpu_get_phys_page_debug(CPUState
*cs
, vaddr addr
)
134 XtensaCPU
*cpu
= XTENSA_CPU(cs
);
139 if (xtensa_get_physical_addr(&cpu
->env
, false, addr
, 0, 0,
140 &paddr
, &page_size
, &access
) == 0) {
143 if (xtensa_get_physical_addr(&cpu
->env
, false, addr
, 2, 0,
144 &paddr
, &page_size
, &access
) == 0) {
150 static uint32_t relocated_vector(CPUXtensaState
*env
, uint32_t vector
)
152 if (xtensa_option_enabled(env
->config
,
153 XTENSA_OPTION_RELOCATABLE_VECTOR
)) {
154 return vector
- env
->config
->vecbase
+ env
->sregs
[VECBASE
];
161 * Handle penging IRQ.
162 * For the high priority interrupt jump to the corresponding interrupt vector.
163 * For the level-1 interrupt convert it to either user, kernel or double
164 * exception with the 'level-1 interrupt' exception cause.
166 static void handle_interrupt(CPUXtensaState
*env
)
168 int level
= env
->pending_irq_level
;
170 if (level
> xtensa_get_cintlevel(env
) &&
171 level
<= env
->config
->nlevel
&&
172 (env
->config
->level_mask
[level
] &
174 env
->sregs
[INTENABLE
])) {
175 CPUState
*cs
= CPU(xtensa_env_get_cpu(env
));
178 env
->sregs
[EPC1
+ level
- 1] = env
->pc
;
179 env
->sregs
[EPS2
+ level
- 2] = env
->sregs
[PS
];
181 (env
->sregs
[PS
] & ~PS_INTLEVEL
) | level
| PS_EXCM
;
182 env
->pc
= relocated_vector(env
,
183 env
->config
->interrupt_vector
[level
]);
185 env
->sregs
[EXCCAUSE
] = LEVEL1_INTERRUPT_CAUSE
;
187 if (env
->sregs
[PS
] & PS_EXCM
) {
188 if (env
->config
->ndepc
) {
189 env
->sregs
[DEPC
] = env
->pc
;
191 env
->sregs
[EPC1
] = env
->pc
;
193 cs
->exception_index
= EXC_DOUBLE
;
195 env
->sregs
[EPC1
] = env
->pc
;
196 cs
->exception_index
=
197 (env
->sregs
[PS
] & PS_UM
) ? EXC_USER
: EXC_KERNEL
;
199 env
->sregs
[PS
] |= PS_EXCM
;
201 env
->exception_taken
= 1;
205 void xtensa_cpu_do_interrupt(CPUState
*cs
)
207 XtensaCPU
*cpu
= XTENSA_CPU(cs
);
208 CPUXtensaState
*env
= &cpu
->env
;
210 if (cs
->exception_index
== EXC_IRQ
) {
211 qemu_log_mask(CPU_LOG_INT
,
212 "%s(EXC_IRQ) level = %d, cintlevel = %d, "
213 "pc = %08x, a0 = %08x, ps = %08x, "
214 "intset = %08x, intenable = %08x, "
216 __func__
, env
->pending_irq_level
, xtensa_get_cintlevel(env
),
217 env
->pc
, env
->regs
[0], env
->sregs
[PS
],
218 env
->sregs
[INTSET
], env
->sregs
[INTENABLE
],
220 handle_interrupt(env
);
223 switch (cs
->exception_index
) {
224 case EXC_WINDOW_OVERFLOW4
:
225 case EXC_WINDOW_UNDERFLOW4
:
226 case EXC_WINDOW_OVERFLOW8
:
227 case EXC_WINDOW_UNDERFLOW8
:
228 case EXC_WINDOW_OVERFLOW12
:
229 case EXC_WINDOW_UNDERFLOW12
:
234 qemu_log_mask(CPU_LOG_INT
, "%s(%d) "
235 "pc = %08x, a0 = %08x, ps = %08x, ccount = %08x\n",
236 __func__
, cs
->exception_index
,
237 env
->pc
, env
->regs
[0], env
->sregs
[PS
], env
->sregs
[CCOUNT
]);
238 if (env
->config
->exception_vector
[cs
->exception_index
]) {
239 env
->pc
= relocated_vector(env
,
240 env
->config
->exception_vector
[cs
->exception_index
]);
241 env
->exception_taken
= 1;
243 qemu_log("%s(pc = %08x) bad exception_index: %d\n",
244 __func__
, env
->pc
, cs
->exception_index
);
252 qemu_log("%s(pc = %08x) unknown exception_index: %d\n",
253 __func__
, env
->pc
, cs
->exception_index
);
256 check_interrupts(env
);
259 bool xtensa_cpu_exec_interrupt(CPUState
*cs
, int interrupt_request
)
261 if (interrupt_request
& CPU_INTERRUPT_HARD
) {
262 cs
->exception_index
= EXC_IRQ
;
263 xtensa_cpu_do_interrupt(cs
);
269 static void reset_tlb_mmu_all_ways(CPUXtensaState
*env
,
270 const xtensa_tlb
*tlb
, xtensa_tlb_entry entry
[][MAX_TLB_WAY_SIZE
])
274 for (wi
= 0; wi
< tlb
->nways
; ++wi
) {
275 for (ei
= 0; ei
< tlb
->way_size
[wi
]; ++ei
) {
276 entry
[wi
][ei
].asid
= 0;
277 entry
[wi
][ei
].variable
= true;
282 static void reset_tlb_mmu_ways56(CPUXtensaState
*env
,
283 const xtensa_tlb
*tlb
, xtensa_tlb_entry entry
[][MAX_TLB_WAY_SIZE
])
285 if (!tlb
->varway56
) {
286 static const xtensa_tlb_entry way5
[] = {
301 static const xtensa_tlb_entry way6
[] = {
316 memcpy(entry
[5], way5
, sizeof(way5
));
317 memcpy(entry
[6], way6
, sizeof(way6
));
320 for (ei
= 0; ei
< 8; ++ei
) {
321 entry
[6][ei
].vaddr
= ei
<< 29;
322 entry
[6][ei
].paddr
= ei
<< 29;
323 entry
[6][ei
].asid
= 1;
324 entry
[6][ei
].attr
= 3;
329 static void reset_tlb_region_way0(CPUXtensaState
*env
,
330 xtensa_tlb_entry entry
[][MAX_TLB_WAY_SIZE
])
334 for (ei
= 0; ei
< 8; ++ei
) {
335 entry
[0][ei
].vaddr
= ei
<< 29;
336 entry
[0][ei
].paddr
= ei
<< 29;
337 entry
[0][ei
].asid
= 1;
338 entry
[0][ei
].attr
= 2;
339 entry
[0][ei
].variable
= true;
343 void reset_mmu(CPUXtensaState
*env
)
345 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_MMU
)) {
346 env
->sregs
[RASID
] = 0x04030201;
347 env
->sregs
[ITLBCFG
] = 0;
348 env
->sregs
[DTLBCFG
] = 0;
349 env
->autorefill_idx
= 0;
350 reset_tlb_mmu_all_ways(env
, &env
->config
->itlb
, env
->itlb
);
351 reset_tlb_mmu_all_ways(env
, &env
->config
->dtlb
, env
->dtlb
);
352 reset_tlb_mmu_ways56(env
, &env
->config
->itlb
, env
->itlb
);
353 reset_tlb_mmu_ways56(env
, &env
->config
->dtlb
, env
->dtlb
);
355 reset_tlb_region_way0(env
, env
->itlb
);
356 reset_tlb_region_way0(env
, env
->dtlb
);
360 static unsigned get_ring(const CPUXtensaState
*env
, uint8_t asid
)
363 for (i
= 0; i
< 4; ++i
) {
364 if (((env
->sregs
[RASID
] >> i
* 8) & 0xff) == asid
) {
372 * Lookup xtensa TLB for the given virtual address.
375 * \param pwi: [out] way index
376 * \param pei: [out] entry index
377 * \param pring: [out] access ring
378 * \return 0 if ok, exception cause code otherwise
380 int xtensa_tlb_lookup(const CPUXtensaState
*env
, uint32_t addr
, bool dtlb
,
381 uint32_t *pwi
, uint32_t *pei
, uint8_t *pring
)
383 const xtensa_tlb
*tlb
= dtlb
?
384 &env
->config
->dtlb
: &env
->config
->itlb
;
385 const xtensa_tlb_entry (*entry
)[MAX_TLB_WAY_SIZE
] = dtlb
?
386 env
->dtlb
: env
->itlb
;
391 for (wi
= 0; wi
< tlb
->nways
; ++wi
) {
394 split_tlb_entry_spec_way(env
, addr
, dtlb
, &vpn
, wi
, &ei
);
395 if (entry
[wi
][ei
].vaddr
== vpn
&& entry
[wi
][ei
].asid
) {
396 unsigned ring
= get_ring(env
, entry
[wi
][ei
].asid
);
400 LOAD_STORE_TLB_MULTI_HIT_CAUSE
:
401 INST_TLB_MULTI_HIT_CAUSE
;
410 (dtlb
? LOAD_STORE_TLB_MISS_CAUSE
: INST_TLB_MISS_CAUSE
);
414 * Convert MMU ATTR to PAGE_{READ,WRITE,EXEC} mask.
417 static unsigned mmu_attr_to_access(uint32_t attr
)
427 access
|= PAGE_WRITE
;
430 switch (attr
& 0xc) {
432 access
|= PAGE_CACHE_BYPASS
;
436 access
|= PAGE_CACHE_WB
;
440 access
|= PAGE_CACHE_WT
;
443 } else if (attr
== 13) {
444 access
|= PAGE_READ
| PAGE_WRITE
| PAGE_CACHE_ISOLATE
;
450 * Convert region protection ATTR to PAGE_{READ,WRITE,EXEC} mask.
453 static unsigned region_attr_to_access(uint32_t attr
)
455 static const unsigned access
[16] = {
456 [0] = PAGE_READ
| PAGE_WRITE
| PAGE_CACHE_WT
,
457 [1] = PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
| PAGE_CACHE_WT
,
458 [2] = PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
| PAGE_CACHE_BYPASS
,
459 [3] = PAGE_EXEC
| PAGE_CACHE_WB
,
460 [4] = PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
| PAGE_CACHE_WB
,
461 [5] = PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
| PAGE_CACHE_WB
,
462 [14] = PAGE_READ
| PAGE_WRITE
| PAGE_CACHE_ISOLATE
,
465 return access
[attr
& 0xf];
469 * Convert cacheattr to PAGE_{READ,WRITE,EXEC} mask.
470 * See ISA, A.2.14 The Cache Attribute Register
472 static unsigned cacheattr_attr_to_access(uint32_t attr
)
474 static const unsigned access
[16] = {
475 [0] = PAGE_READ
| PAGE_WRITE
| PAGE_CACHE_WT
,
476 [1] = PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
| PAGE_CACHE_WT
,
477 [2] = PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
| PAGE_CACHE_BYPASS
,
478 [3] = PAGE_EXEC
| PAGE_CACHE_WB
,
479 [4] = PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
| PAGE_CACHE_WB
,
480 [14] = PAGE_READ
| PAGE_WRITE
| PAGE_CACHE_ISOLATE
,
483 return access
[attr
& 0xf];
486 static bool is_access_granted(unsigned access
, int is_write
)
490 return access
& PAGE_READ
;
493 return access
& PAGE_WRITE
;
496 return access
& PAGE_EXEC
;
503 static int get_pte(CPUXtensaState
*env
, uint32_t vaddr
, uint32_t *pte
);
505 static int get_physical_addr_mmu(CPUXtensaState
*env
, bool update_tlb
,
506 uint32_t vaddr
, int is_write
, int mmu_idx
,
507 uint32_t *paddr
, uint32_t *page_size
, unsigned *access
,
510 bool dtlb
= is_write
!= 2;
516 const xtensa_tlb_entry
*entry
= NULL
;
517 xtensa_tlb_entry tmp_entry
;
518 int ret
= xtensa_tlb_lookup(env
, vaddr
, dtlb
, &wi
, &ei
, &ring
);
520 if ((ret
== INST_TLB_MISS_CAUSE
|| ret
== LOAD_STORE_TLB_MISS_CAUSE
) &&
521 may_lookup_pt
&& get_pte(env
, vaddr
, &pte
) == 0) {
522 ring
= (pte
>> 4) & 0x3;
524 split_tlb_entry_spec_way(env
, vaddr
, dtlb
, &vpn
, wi
, &ei
);
527 wi
= ++env
->autorefill_idx
& 0x3;
528 xtensa_tlb_set_entry(env
, dtlb
, wi
, ei
, vpn
, pte
);
529 env
->sregs
[EXCVADDR
] = vaddr
;
530 qemu_log("%s: autorefill(%08x): %08x -> %08x\n",
531 __func__
, vaddr
, vpn
, pte
);
533 xtensa_tlb_set_entry_mmu(env
, &tmp_entry
, dtlb
, wi
, ei
, vpn
, pte
);
543 entry
= xtensa_tlb_get_entry(env
, dtlb
, wi
, ei
);
546 if (ring
< mmu_idx
) {
548 LOAD_STORE_PRIVILEGE_CAUSE
:
549 INST_FETCH_PRIVILEGE_CAUSE
;
552 *access
= mmu_attr_to_access(entry
->attr
) &
553 ~(dtlb
? PAGE_EXEC
: PAGE_READ
| PAGE_WRITE
);
554 if (!is_access_granted(*access
, is_write
)) {
557 STORE_PROHIBITED_CAUSE
:
558 LOAD_PROHIBITED_CAUSE
) :
559 INST_FETCH_PROHIBITED_CAUSE
;
562 *paddr
= entry
->paddr
| (vaddr
& ~xtensa_tlb_get_addr_mask(env
, dtlb
, wi
));
563 *page_size
= ~xtensa_tlb_get_addr_mask(env
, dtlb
, wi
) + 1;
568 static int get_pte(CPUXtensaState
*env
, uint32_t vaddr
, uint32_t *pte
)
570 CPUState
*cs
= CPU(xtensa_env_get_cpu(env
));
575 (env
->sregs
[PTEVADDR
] | (vaddr
>> 10)) & 0xfffffffc;
576 int ret
= get_physical_addr_mmu(env
, false, pt_vaddr
, 0, 0,
577 &paddr
, &page_size
, &access
, false);
579 qemu_log("%s: trying autorefill(%08x) -> %08x\n", __func__
,
580 vaddr
, ret
? ~0 : paddr
);
583 *pte
= ldl_phys(cs
->as
, paddr
);
588 static int get_physical_addr_region(CPUXtensaState
*env
,
589 uint32_t vaddr
, int is_write
, int mmu_idx
,
590 uint32_t *paddr
, uint32_t *page_size
, unsigned *access
)
592 bool dtlb
= is_write
!= 2;
594 uint32_t ei
= (vaddr
>> 29) & 0x7;
595 const xtensa_tlb_entry
*entry
=
596 xtensa_tlb_get_entry(env
, dtlb
, wi
, ei
);
598 *access
= region_attr_to_access(entry
->attr
);
599 if (!is_access_granted(*access
, is_write
)) {
602 STORE_PROHIBITED_CAUSE
:
603 LOAD_PROHIBITED_CAUSE
) :
604 INST_FETCH_PROHIBITED_CAUSE
;
607 *paddr
= entry
->paddr
| (vaddr
& ~REGION_PAGE_MASK
);
608 *page_size
= ~REGION_PAGE_MASK
+ 1;
614 * Convert virtual address to physical addr.
615 * MMU may issue pagewalk and change xtensa autorefill TLB way entry.
617 * \return 0 if ok, exception cause code otherwise
619 int xtensa_get_physical_addr(CPUXtensaState
*env
, bool update_tlb
,
620 uint32_t vaddr
, int is_write
, int mmu_idx
,
621 uint32_t *paddr
, uint32_t *page_size
, unsigned *access
)
623 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_MMU
)) {
624 return get_physical_addr_mmu(env
, update_tlb
,
625 vaddr
, is_write
, mmu_idx
, paddr
, page_size
, access
, true);
626 } else if (xtensa_option_bits_enabled(env
->config
,
627 XTENSA_OPTION_BIT(XTENSA_OPTION_REGION_PROTECTION
) |
628 XTENSA_OPTION_BIT(XTENSA_OPTION_REGION_TRANSLATION
))) {
629 return get_physical_addr_region(env
, vaddr
, is_write
, mmu_idx
,
630 paddr
, page_size
, access
);
633 *page_size
= TARGET_PAGE_SIZE
;
634 *access
= cacheattr_attr_to_access(
635 env
->sregs
[CACHEATTR
] >> ((vaddr
& 0xe0000000) >> 27));
640 static void dump_tlb(FILE *f
, fprintf_function cpu_fprintf
,
641 CPUXtensaState
*env
, bool dtlb
)
644 const xtensa_tlb
*conf
=
645 dtlb
? &env
->config
->dtlb
: &env
->config
->itlb
;
646 unsigned (*attr_to_access
)(uint32_t) =
647 xtensa_option_enabled(env
->config
, XTENSA_OPTION_MMU
) ?
648 mmu_attr_to_access
: region_attr_to_access
;
650 for (wi
= 0; wi
< conf
->nways
; ++wi
) {
651 uint32_t sz
= ~xtensa_tlb_get_addr_mask(env
, dtlb
, wi
) + 1;
653 bool print_header
= true;
655 if (sz
>= 0x100000) {
663 for (ei
= 0; ei
< conf
->way_size
[wi
]; ++ei
) {
664 const xtensa_tlb_entry
*entry
=
665 xtensa_tlb_get_entry(env
, dtlb
, wi
, ei
);
668 static const char * const cache_text
[8] = {
669 [PAGE_CACHE_BYPASS
>> PAGE_CACHE_SHIFT
] = "Bypass",
670 [PAGE_CACHE_WT
>> PAGE_CACHE_SHIFT
] = "WT",
671 [PAGE_CACHE_WB
>> PAGE_CACHE_SHIFT
] = "WB",
672 [PAGE_CACHE_ISOLATE
>> PAGE_CACHE_SHIFT
] = "Isolate",
674 unsigned access
= attr_to_access(entry
->attr
);
675 unsigned cache_idx
= (access
& PAGE_CACHE_MASK
) >>
679 print_header
= false;
680 cpu_fprintf(f
, "Way %u (%d %s)\n", wi
, sz
, sz_text
);
682 "\tVaddr Paddr ASID Attr RWX Cache\n"
683 "\t---------- ---------- ---- ---- --- -------\n");
686 "\t0x%08x 0x%08x 0x%02x 0x%02x %c%c%c %-7s\n",
691 (access
& PAGE_READ
) ? 'R' : '-',
692 (access
& PAGE_WRITE
) ? 'W' : '-',
693 (access
& PAGE_EXEC
) ? 'X' : '-',
694 cache_text
[cache_idx
] ? cache_text
[cache_idx
] :
701 void dump_mmu(FILE *f
, fprintf_function cpu_fprintf
, CPUXtensaState
*env
)
703 if (xtensa_option_bits_enabled(env
->config
,
704 XTENSA_OPTION_BIT(XTENSA_OPTION_REGION_PROTECTION
) |
705 XTENSA_OPTION_BIT(XTENSA_OPTION_REGION_TRANSLATION
) |
706 XTENSA_OPTION_BIT(XTENSA_OPTION_MMU
))) {
708 cpu_fprintf(f
, "ITLB:\n");
709 dump_tlb(f
, cpu_fprintf
, env
, false);
710 cpu_fprintf(f
, "\nDTLB:\n");
711 dump_tlb(f
, cpu_fprintf
, env
, true);
713 cpu_fprintf(f
, "No TLB for this CPU core\n");