xref: /qemu/accel/tcg/tlb-bounds.h (revision 7cef6d686309e2792186504ae17cf4f3eb57ef68)
1 /*
2  * softmmu size bounds
3  * SPDX-License-Identifier: LGPL-2.1-or-later
4  */
5 
6 #ifndef ACCEL_TCG_TLB_BOUNDS_H
7 #define ACCEL_TCG_TLB_BOUNDS_H
8 
9 #define CPU_TLB_DYN_MIN_BITS 6
10 #define CPU_TLB_DYN_MAX_BITS (32 - TARGET_PAGE_BITS)
11 #define CPU_TLB_DYN_DEFAULT_BITS 8
12 
13 #endif /* ACCEL_TCG_TLB_BOUNDS_H */
14