From 6dc5cfe34bd99d2c7e197e450a15e5ab0fbe920b Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 29 Oct 2021 01:13:43 -0700 Subject: [PATCH] cpu: Get rid of the BaseCPU UnifiedTLB parameter. This parameter is not (and as far as I can tell has never been) used, and is guarded with a check of TARGET_ISA. Change-Id: I71f4894228391e2024dab20e1bf2618dcea4f421 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/52487 Reviewed-by: Giacomo Travaglini Maintainer: Giacomo Travaglini Tested-by: kokoro --- src/cpu/BaseCPU.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cpu/BaseCPU.py b/src/cpu/BaseCPU.py index a9b490d292..1fa4d9e717 100644 --- a/src/cpu/BaseCPU.py +++ b/src/cpu/BaseCPU.py @@ -150,8 +150,6 @@ class BaseCPU(ClockedObject): workload = VectorParam.Process([], "processes to run") mmu = Param.BaseMMU(ArchMMU(), "CPU memory management unit") - if buildEnv['TARGET_ISA'] == 'power': - UnifiedTLB = Param.Bool(True, "Is this a Unified TLB?") interrupts = VectorParam.BaseInterrupts([], "Interrupt Controller") isa = VectorParam.BaseISA([], "ISA instance")