summaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2004-07-30 10:47:53 -0400
committerNathan Binkert <binkertn@umich.edu>2004-07-30 10:47:53 -0400
commit3711ea7347b02b8e27f5959d453cb8c9a291a753 (patch)
tree1c03f48fd8b32020d60e34f7518f9f77e48431bf /SConscript
parent41988a86b56984e19e9ef45991a39c00fdb3f21e (diff)
downloadgem5-3711ea7347b02b8e27f5959d453cb8c9a291a753.tar.xz
Move all of the object matching code to a shared file so it can
be more easily re-used. This currently uses some cooked up matching function that I wrote a while ago, but should probably be changed to use regular expressions in the future. add doDebugBreak to control breakpoints on a per SimObject basis SConscript: add match base/stats/events.cc: base/trace.cc: Move the object matching code into a separate file so it can be more easily shared base/trace.hh: the object matching code was wrapped up and moved. adapt. sim/sim_object.cc: add the doDebugBreak flag that can be set on a per-SimObject basis. This will be used in the future to control whether or not debug_break() will actually break for a given object. provide a function interface that can be called from the debugger. sim/sim_object.hh: add the doDebugBreak flag that can be set on a per-SimObject basis. This will be used in the future to control whether or not debug_break() will actually break for a given object. --HG-- extra : convert_revision : 6bf7924de63d41f5ba6b80d579efdf26ba265a8f
Diffstat (limited to 'SConscript')
-rw-r--r--SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/SConscript b/SConscript
index 3c6bbf83e..d1f4bc0b7 100644
--- a/SConscript
+++ b/SConscript
@@ -59,6 +59,7 @@ base_sources = Split('''
base/hybrid_pred.cc
base/inifile.cc
base/intmath.cc
+ base/match.cc
base/misc.cc
base/pollevent.cc
base/python.cc