diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-10-19 10:32:08 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-10-19 10:32:08 -0700 |
commit | a78e92381b14dae8eb3113a48f9b0112e8d02a98 (patch) | |
tree | 3b133cd36b04b91dcfa0e46f535a74dae654168e | |
parent | e78684fc6ce9dc127902ec3dada6bbd2f403ff12 (diff) | |
download | gem5-a78e92381b14dae8eb3113a48f9b0112e8d02a98.tar.xz |
Add "All" compund flag to enable all defined trace flags.
--HG--
extra : convert_revision : dcc699d8341f762dee659290cd35206e326e1179
-rw-r--r-- | src/base/traceflags.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base/traceflags.py b/src/base/traceflags.py index 757c9e7b7..298d22c2b 100644 --- a/src/base/traceflags.py +++ b/src/base/traceflags.py @@ -182,7 +182,8 @@ compoundFlagMap = { 'EthernetNoData' : [ 'Ethernet', 'EthernetPIO', 'EthernetDesc', 'EthernetIntr', 'EthernetSM', 'EthernetCksum' ], 'IdeAll' : [ 'IdeCtrl', 'IdeDisk' ], 'O3CPUAll' : [ 'Fetch', 'Decode', 'Rename', 'IEW', 'Commit', 'IQ', 'ROB', 'FreeList', 'RenameMap', 'LSQ', 'LSQUnit', 'StoreSet', 'MemDepUnit', 'DynInst', 'FullCPU', 'O3CPU', 'Activity','Scoreboard','Writeback'], - 'OzoneCPUAll' : [ 'BE', 'FE', 'IBE', 'OzoneLSQ', 'OzoneCPU'] + 'OzoneCPUAll' : [ 'BE', 'FE', 'IBE', 'OzoneLSQ', 'OzoneCPU'], + 'All' : baseFlags } ############################################################# |