diff options
author | Nathan Binkert <nate@binkert.org> | 2011-06-02 17:36:21 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2011-06-02 17:36:21 -0700 |
commit | 2b1aa35e209a76515763e7e7d7a0fe6a8267bebf (patch) | |
tree | fde43c1f169789aa6f10fc58bb70678d1230e756 /src/cpu/SConscript | |
parent | f49f384fe415e68096d16e0ef5396136bc97b292 (diff) | |
download | gem5-2b1aa35e209a76515763e7e7d7a0fe6a8267bebf.tar.xz |
scons: rename TraceFlags to DebugFlags
Diffstat (limited to 'src/cpu/SConscript')
-rw-r--r-- | src/cpu/SConscript | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/src/cpu/SConscript b/src/cpu/SConscript index f6ed80680..edb4b2702 100644 --- a/src/cpu/SConscript +++ b/src/cpu/SConscript @@ -137,7 +137,7 @@ if env['FULL_SYSTEM']: if env['USE_CHECKER']: Source('checker/cpu.cc') - TraceFlag('Checker') + DebugFlag('Checker') checker_supports = False for i in CheckerSupportedCPUList: if i in env['CPU_MODELS']: @@ -149,32 +149,32 @@ if env['USE_CHECKER']: print ", please set USE_CHECKER=False or use one of those CPU models" Exit(1) -TraceFlag('Activity') -TraceFlag('Commit') -TraceFlag('Context') -TraceFlag('Decode') -TraceFlag('DynInst') -TraceFlag('ExecEnable') -TraceFlag('ExecCPSeq') -TraceFlag('ExecEffAddr') -TraceFlag('ExecFaulting', 'Trace faulting instructions') -TraceFlag('ExecFetchSeq') -TraceFlag('ExecOpClass') -TraceFlag('ExecRegDelta') -TraceFlag('ExecResult') -TraceFlag('ExecSpeculative') -TraceFlag('ExecSymbol') -TraceFlag('ExecThread') -TraceFlag('ExecTicks') -TraceFlag('ExecMicro') -TraceFlag('ExecMacro') -TraceFlag('ExecUser') -TraceFlag('ExecKernel') -TraceFlag('ExecAsid') -TraceFlag('Fetch') -TraceFlag('IntrControl') -TraceFlag('PCEvent') -TraceFlag('Quiesce') +DebugFlag('Activity') +DebugFlag('Commit') +DebugFlag('Context') +DebugFlag('Decode') +DebugFlag('DynInst') +DebugFlag('ExecEnable') +DebugFlag('ExecCPSeq') +DebugFlag('ExecEffAddr') +DebugFlag('ExecFaulting', 'Trace faulting instructions') +DebugFlag('ExecFetchSeq') +DebugFlag('ExecOpClass') +DebugFlag('ExecRegDelta') +DebugFlag('ExecResult') +DebugFlag('ExecSpeculative') +DebugFlag('ExecSymbol') +DebugFlag('ExecThread') +DebugFlag('ExecTicks') +DebugFlag('ExecMicro') +DebugFlag('ExecMacro') +DebugFlag('ExecUser') +DebugFlag('ExecKernel') +DebugFlag('ExecAsid') +DebugFlag('Fetch') +DebugFlag('IntrControl') +DebugFlag('PCEvent') +DebugFlag('Quiesce') CompoundFlag('ExecAll', [ 'ExecEnable', 'ExecCPSeq', 'ExecEffAddr', 'ExecFaulting', 'ExecFetchSeq', 'ExecOpClass', 'ExecRegDelta', |