Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
14 lines
296 B
C
14 lines
296 B
C
/*
|
|
* softmmu size bounds
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#ifndef ACCEL_TCG_TLB_BOUNDS_H
|
|
#define ACCEL_TCG_TLB_BOUNDS_H
|
|
|
|
#define CPU_TLB_DYN_MIN_BITS 6
|
|
#define CPU_TLB_DYN_MAX_BITS (32 - TARGET_PAGE_BITS)
|
|
#define CPU_TLB_DYN_DEFAULT_BITS 8
|
|
|
|
#endif /* ACCEL_TCG_TLB_BOUNDS_H */
|