From a81c969529d3a1645b490fcde93d231ec997b7ba Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Tue, 21 Aug 2012 05:49:43 -0400 Subject: CPU: Remove overloaded function_trace_start parameter This patch removes the overloading of the parameter, which seems both redundant, and possibly incorrect. The inorder CPU is particularly interesting as it uses a different name for the parameter, and never make any use of it internally. --- src/cpu/inorder/InOrderCPU.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/cpu/inorder') diff --git a/src/cpu/inorder/InOrderCPU.py b/src/cpu/inorder/InOrderCPU.py index 2dcd51d45..416b18dd3 100644 --- a/src/cpu/inorder/InOrderCPU.py +++ b/src/cpu/inorder/InOrderCPU.py @@ -62,8 +62,7 @@ class InOrderCPU(BaseCPU): RASSize = Param.Unsigned(16, "RAS size") instShiftAmt = Param.Unsigned(2, "Number of bits to shift instructions by") - functionTrace = Param.Bool(False, "Enable function trace") - functionTraceStart = Param.Tick(0, "Cycle to start function trace") + stageTracing = Param.Bool(False, "Enable tracing of each stage in CPU") multLatency = Param.Unsigned(1, "Latency for Multiply Operations") -- cgit v1.2.3