SConscript (6365:a3037fa327a0) SConscript (6667:8b5bc1a777bc)
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 146 unchanged lines hidden (view full) ---

155TraceFlag('Activity')
156TraceFlag('Commit')
157TraceFlag('Context')
158TraceFlag('Decode')
159TraceFlag('DynInst')
160TraceFlag('ExecEnable')
161TraceFlag('ExecCPSeq')
162TraceFlag('ExecEffAddr')
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 146 unchanged lines hidden (view full) ---

155TraceFlag('Activity')
156TraceFlag('Commit')
157TraceFlag('Context')
158TraceFlag('Decode')
159TraceFlag('DynInst')
160TraceFlag('ExecEnable')
161TraceFlag('ExecCPSeq')
162TraceFlag('ExecEffAddr')
163TraceFlag('ExecFaulting', 'Trace faulting instructions')
163TraceFlag('ExecFetchSeq')
164TraceFlag('ExecOpClass')
165TraceFlag('ExecRegDelta')
166TraceFlag('ExecResult')
167TraceFlag('ExecSpeculative')
168TraceFlag('ExecSymbol')
169TraceFlag('ExecThread')
170TraceFlag('ExecTicks')
171TraceFlag('ExecMicro')
172TraceFlag('ExecMacro')
173TraceFlag('Fetch')
174TraceFlag('IntrControl')
175TraceFlag('PCEvent')
176TraceFlag('Quiesce')
177
178CompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread',
164TraceFlag('ExecFetchSeq')
165TraceFlag('ExecOpClass')
166TraceFlag('ExecRegDelta')
167TraceFlag('ExecResult')
168TraceFlag('ExecSpeculative')
169TraceFlag('ExecSymbol')
170TraceFlag('ExecThread')
171TraceFlag('ExecTicks')
172TraceFlag('ExecMicro')
173TraceFlag('ExecMacro')
174TraceFlag('Fetch')
175TraceFlag('IntrControl')
176TraceFlag('PCEvent')
177TraceFlag('Quiesce')
178
179CompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread',
179 'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro' ])
180 'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro', 'ExecFaulting' ])
180CompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread',
181CompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread',
181 'ExecEffAddr', 'ExecResult', 'ExecMicro' ])
182 'ExecEffAddr', 'ExecResult', 'ExecMicro', 'ExecFaulting' ])