diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2012-04-14 23:19:34 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2012-04-14 23:19:34 -0700 |
commit | c4c27ded423b9beb0e361421ca83fe0eac06a0d1 (patch) | |
tree | 5d304f15bd0e6958e7db1ff20a0be58533f675fd /src/unittest/SConscript | |
parent | 14edc6013d8d62782d58536214c669e12c64da37 (diff) | |
download | gem5-c4c27ded423b9beb0e361421ca83fe0eac06a0d1.tar.xz |
sim: A trie data structure specifically to speed up paging lookups.
This change adds a trie data structure which stores an arbitrary pointer type
based on an address and a number of relevant bits. Then lookups can be done
against the trie where the tree is traversed and the first legitimate match
found is returned.
Diffstat (limited to 'src/unittest/SConscript')
-rw-r--r-- | src/unittest/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/unittest/SConscript b/src/unittest/SConscript index 606bffd05..3ceae23b5 100644 --- a/src/unittest/SConscript +++ b/src/unittest/SConscript @@ -48,6 +48,7 @@ UnitTest('rangemaptest', 'rangemaptest.cc') UnitTest('rangemultimaptest', 'rangemultimaptest.cc') UnitTest('refcnttest', 'refcnttest.cc') UnitTest('strnumtest', 'strnumtest.cc') +UnitTest('trietest', 'trietest.cc') stattest_py = PySource('m5', 'stattestmain.py', skip_lib=True) stattest_swig = SwigSource('m5.internal', 'stattest.i', skip_lib=True) |