From bb450fe0aa25e25b254f50c3dbba85fe75af4d1c Mon Sep 17 00:00:00 2001 From: "Daniel R. Carvalho" Date: Mon, 6 May 2019 08:58:07 +0200 Subject: mem-ruby: Bloom filters - Remove in/decrement Increment and decrement were functions created to supply the different naming convention used by the counting bloom filter. They were removed, and the set and unset functions were used in their place instead, as in the other filters. Change-Id: I45732bdfa3083add0a975f374a0f3560003e9d09 Signed-off-by: Daniel R. Carvalho Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18729 Maintainer: Nikos Nikoleris Tested-by: kokoro Reviewed-by: Nikos Nikoleris --- src/mem/protocol/RubySlicc_Types.sm | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/mem/protocol/RubySlicc_Types.sm') diff --git a/src/mem/protocol/RubySlicc_Types.sm b/src/mem/protocol/RubySlicc_Types.sm index 27a045d29..28fb6ef00 100644 --- a/src/mem/protocol/RubySlicc_Types.sm +++ b/src/mem/protocol/RubySlicc_Types.sm @@ -235,8 +235,6 @@ structure (TimerTable, inport="yes", external = "yes") { structure (AbstractBloomFilter, external = "yes") { void clear(int); - void increment(Addr, int); - void decrement(Addr, int); void set(Addr, int); void unset(Addr, int); -- cgit v1.2.3