SConscript (8232:b28d06a175be) | SConscript (8300:eb279d6e08a2) |
---|---|
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 --- 154 unchanged lines hidden (view full) --- 163TraceFlag('ExecRegDelta') 164TraceFlag('ExecResult') 165TraceFlag('ExecSpeculative') 166TraceFlag('ExecSymbol') 167TraceFlag('ExecThread') 168TraceFlag('ExecTicks') 169TraceFlag('ExecMicro') 170TraceFlag('ExecMacro') | 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 --- 154 unchanged lines hidden (view full) --- 163TraceFlag('ExecRegDelta') 164TraceFlag('ExecResult') 165TraceFlag('ExecSpeculative') 166TraceFlag('ExecSymbol') 167TraceFlag('ExecThread') 168TraceFlag('ExecTicks') 169TraceFlag('ExecMicro') 170TraceFlag('ExecMacro') |
171TraceFlag('ExecUser') 172TraceFlag('ExecKernel') 173TraceFlag('ExecAsid') |
|
171TraceFlag('Fetch') 172TraceFlag('IntrControl') 173TraceFlag('PCEvent') 174TraceFlag('Quiesce') 175 176CompoundFlag('ExecAll', [ 'ExecEnable', 'ExecCPSeq', 'ExecEffAddr', 177 'ExecFaulting', 'ExecFetchSeq', 'ExecOpClass', 'ExecRegDelta', 178 'ExecResult', 'ExecSpeculative', 'ExecSymbol', 'ExecThread', | 174TraceFlag('Fetch') 175TraceFlag('IntrControl') 176TraceFlag('PCEvent') 177TraceFlag('Quiesce') 178 179CompoundFlag('ExecAll', [ 'ExecEnable', 'ExecCPSeq', 'ExecEffAddr', 180 'ExecFaulting', 'ExecFetchSeq', 'ExecOpClass', 'ExecRegDelta', 181 'ExecResult', 'ExecSpeculative', 'ExecSymbol', 'ExecThread', |
179 'ExecTicks', 'ExecMicro', 'ExecMacro' ]) | 182 'ExecTicks', 'ExecMicro', 'ExecMacro', 'ExecUser', 'ExecKernel', 183 'ExecAsid' ]) |
180CompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread', | 184CompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread', |
181 'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro', 'ExecFaulting' ]) | 185 'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro', 'ExecFaulting', 186 'ExecUser', 'ExecKernel' ]) |
182CompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread', | 187CompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread', |
183 'ExecEffAddr', 'ExecResult', 'ExecMicro', 'ExecFaulting' ]) | 188 'ExecEffAddr', 'ExecResult', 'ExecMicro', 'ExecFaulting', 189 'ExecUser', 'ExecKernel' ]) |