diff options
author | Polina Dudnik <pdudnik@gmail.com> | 2009-05-11 10:38:46 -0700 |
---|---|---|
committer | Polina Dudnik <pdudnik@gmail.com> | 2009-05-11 10:38:46 -0700 |
commit | 7769cc9092ccfd8c6c2286762631f0d0f1f16d04 (patch) | |
tree | c9fb119589da4bdc928a94e879f9cf2415a074fd /src/mem/protocol | |
parent | 0ccf8f35a57001bab2da39ea24afd288244e0dcd (diff) | |
download | gem5-7769cc9092ccfd8c6c2286762631f0d0f1f16d04.tar.xz |
ruby: decommission code
1. Set.* and BigSet.* are replaced with OptBigSet.* which was renamed Set.*
2. Decomissioned all bloom filters
3. Decomissioned ruby/simics directory
Diffstat (limited to 'src/mem/protocol')
-rw-r--r-- | src/mem/protocol/RubySlicc_Types.sm | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mem/protocol/RubySlicc_Types.sm b/src/mem/protocol/RubySlicc_Types.sm index a948322dd..3f038031d 100644 --- a/src/mem/protocol/RubySlicc_Types.sm +++ b/src/mem/protocol/RubySlicc_Types.sm @@ -153,16 +153,4 @@ external_type(TimerTable, inport="yes") { bool isSet(Address); } -external_type(GenericBloomFilter) { - - void clear(int); - void increment(Address, int); - void decrement(Address, int); - void set(Address, int); - void unset(Address, int); - - bool isSet(Address, int); - int getCount(Address, int); -} - |