master
h 13 lines 296 Bytes
Raw
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 */