mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
target/arm: Fold regime_tcr() and regime_tcr_value() together
The only caller of regime_tcr() is now regime_tcr_value(); fold the two together, and use the shorter and more natural 'regime_tcr' name for the new function. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20220714132303.1287193-4-peter.maydell@linaro.org
This commit is contained in:
parent
9e70e26c53
commit
c1547bba7e
4 changed files with 12 additions and 18 deletions
|
@ -4216,7 +4216,7 @@ static int vae1_tlbmask(CPUARMState *env)
|
|||
static int tlbbits_for_regime(CPUARMState *env, ARMMMUIdx mmu_idx,
|
||||
uint64_t addr)
|
||||
{
|
||||
uint64_t tcr = regime_tcr_value(env, mmu_idx);
|
||||
uint64_t tcr = regime_tcr(env, mmu_idx);
|
||||
int tbi = aa64_va_parameter_tbi(tcr, mmu_idx);
|
||||
int select = extract64(addr, 55, 1);
|
||||
|
||||
|
@ -10158,7 +10158,7 @@ static int aa64_va_parameter_tcma(uint64_t tcr, ARMMMUIdx mmu_idx)
|
|||
ARMVAParameters aa64_va_parameters(CPUARMState *env, uint64_t va,
|
||||
ARMMMUIdx mmu_idx, bool data)
|
||||
{
|
||||
uint64_t tcr = regime_tcr_value(env, mmu_idx);
|
||||
uint64_t tcr = regime_tcr(env, mmu_idx);
|
||||
bool epd, hpd, using16k, using64k, tsz_oob, ds;
|
||||
int select, tsz, tbi, max_tsz, min_tsz, ps, sh;
|
||||
ARMCPU *cpu = env_archcpu(env);
|
||||
|
@ -10849,7 +10849,7 @@ static CPUARMTBFlags rebuild_hflags_a64(CPUARMState *env, int el, int fp_el,
|
|||
{
|
||||
CPUARMTBFlags flags = {};
|
||||
ARMMMUIdx stage1 = stage_1_mmu_idx(mmu_idx);
|
||||
uint64_t tcr = regime_tcr_value(env, mmu_idx);
|
||||
uint64_t tcr = regime_tcr(env, mmu_idx);
|
||||
uint64_t sctlr;
|
||||
int tbii, tbid;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue