# Node ID 13b9f3eb59440ef90382d2d8b240dc8c067d7467 # Parent 5e4adb5dd274854bb263f7757bf923fe5aa335f7 diff --git a/src/mem/slicc/ast/FuncCallExprAST.py b/src/mem/slicc/ast/FuncCallExprAST.py --- a/src/mem/slicc/ast/FuncCallExprAST.py +++ b/src/mem/slicc/ast/FuncCallExprAST.py @@ -1,5 +1,6 @@ # Copyright (c) 1999-2008 Mark D. Hill and David A. Wood # Copyright (c) 2009 The Hewlett-Packard Development Company +# Copyright (c) 2013 Advanced Micro Devices, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -53,6 +54,8 @@ # handled differently. Hence the check whether or not # the str_list is empty. + dflag = "%s" % (self.exprs[0].name) + machine.addDebugFlag(dflag) format = "%s" % (self.exprs[1].inline()) format_length = len(format) str_list = [] @@ -61,10 +64,11 @@ str_list.append("%s" % self.exprs[i].inline()) if len(str_list) == 0: - code('DPRINTF(RubySlicc, "$0: $1")', - self.exprs[0].location, format[2:format_length-2]) + code('DPRINTF($0, "$1: $2")', + dflag, self.exprs[0].location, format[2:format_length-2]) else: - code('DPRINTF(RubySlicc, "$0: $1", $2)', + code('DPRINTF($0, "$1: $2", $3)', + dflag, self.exprs[0].location, format[2:format_length-2], ', '.join(str_list)) diff --git a/src/mem/slicc/ast/VarExprAST.py b/src/mem/slicc/ast/VarExprAST.py --- a/src/mem/slicc/ast/VarExprAST.py +++ b/src/mem/slicc/ast/VarExprAST.py @@ -1,5 +1,6 @@ # Copyright (c) 1999-2008 Mark D. Hill and David A. Wood # Copyright (c) 2009 The Hewlett-Packard Development Company +# Copyright (c) 2013 Advanced Micro Devices, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without diff --git a/src/mem/slicc/symbols/StateMachine.py b/src/mem/slicc/symbols/StateMachine.py --- a/src/mem/slicc/symbols/StateMachine.py +++ b/src/mem/slicc/symbols/StateMachine.py @@ -1,5 +1,6 @@ # Copyright (c) 1999-2008 Mark D. Hill and David A. Wood # Copyright (c) 2009 The Hewlett-Packard Development Company +# Copyright (c) 2013 Advanced Micro Devices, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -86,6 +87,9 @@ self.objects = [] self.TBEType = None self.EntryType = None + self.debug_flags = set() + self.debug_flags.add('RubyGenerated') + self.debug_flags.add('RubySlicc') def __repr__(self): return "[StateMachine: %s]" % self.ident @@ -114,6 +118,9 @@ self.actions[action.ident] = action + def addDebugFlag(self, flag): + self.debug_flags.add(flag) + def addRequestType(self, request_type): assert self.table is None self.request_types[request_type.ident] = request_type @@ -271,6 +278,7 @@ #include "mem/ruby/common/Global.hh" #include "mem/ruby/slicc_interface/AbstractController.hh" #include "params/$c_ident.hh" + ''') seen_types = set() @@ -442,23 +450,27 @@ */ #include -#include #include #include #include #include +#include #include "base/compiler.hh" #include "base/cprintf.hh" -#include "debug/RubyGenerated.hh" -#include "debug/RubySlicc.hh" + +''') + for f in self.debug_flags: + code('#include "debug/${{f}}.hh"') + code(''' #include "mem/protocol/${ident}_Controller.hh" #include "mem/protocol/${ident}_Event.hh" #include "mem/protocol/${ident}_State.hh" #include "mem/protocol/Types.hh" #include "mem/ruby/common/Global.hh" #include "mem/ruby/system/System.hh" + ''') for include_path in includes: code('#include "${{include_path}}"') @@ -1053,16 +1065,21 @@ // ${ident}: ${{self.short}} #include -#include #include #include +#include #include "base/misc.hh" -#include "debug/RubySlicc.hh" + +''') + for f in self.debug_flags: + code('#include "debug/${{f}}.hh"') + code(''' #include "mem/protocol/${ident}_Controller.hh" #include "mem/protocol/${ident}_Event.hh" #include "mem/protocol/${ident}_State.hh" + ''') if outputRequest_types: @@ -1072,6 +1089,7 @@ #include "mem/protocol/Types.hh" #include "mem/ruby/common/Global.hh" #include "mem/ruby/system/System.hh" + ''')