Daniel Carvalho has uploaded this change for review. ( https://gem5-review.googlesource.com/9002

Change subject: mem-cache: Create LIP Replacement Policy
......................................................................

mem-cache: Create LIP Replacement Policy

Implementation of a LRU Insertion Policy replacement policy.

Change-Id: I1a9aa0091ff2cdc1b1652c1d5ec7a3b33fba5b44
---
M src/mem/cache/replacement_policies/ReplacementPolicies.py
M src/mem/cache/replacement_policies/SConscript
A src/mem/cache/replacement_policies/lip_rp.cc
A src/mem/cache/replacement_policies/lip_rp.hh
4 files changed, 129 insertions(+), 0 deletions(-)



diff --git a/src/mem/cache/replacement_policies/ReplacementPolicies.py b/src/mem/cache/replacement_policies/ReplacementPolicies.py
index 0faa524..1302613 100644
--- a/src/mem/cache/replacement_policies/ReplacementPolicies.py
+++ b/src/mem/cache/replacement_policies/ReplacementPolicies.py
@@ -40,6 +40,11 @@
     cxx_class = 'LRURP'
     cxx_header = "mem/cache/replacement_policies/lru_rp.hh"

+class LIPRP(LRURP):
+    type = 'LIPRP'
+    cxx_class = 'LIPRP'
+    cxx_header = "mem/cache/replacement_policies/lip_rp.hh"
+
 class RandomRP(BaseReplacementPolicy):
     type = 'RandomRP'
     cxx_class = 'RandomRP'
diff --git a/src/mem/cache/replacement_policies/SConscript b/src/mem/cache/replacement_policies/SConscript
index c3c8992..24a1945 100644
--- a/src/mem/cache/replacement_policies/SConscript
+++ b/src/mem/cache/replacement_policies/SConscript
@@ -33,5 +33,6 @@
 SimObject('ReplacementPolicies.py')

 Source('base.cc')
+Source('lip_rp.cc')
 Source('lru_rp.cc')
 Source('random_rp.cc')
diff --git a/src/mem/cache/replacement_policies/lip_rp.cc b/src/mem/cache/replacement_policies/lip_rp.cc
new file mode 100644
index 0000000..7de3576
--- /dev/null
+++ b/src/mem/cache/replacement_policies/lip_rp.cc
@@ -0,0 +1,53 @@
+/**
+ * Copyright (c) 2018 Inria
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Daniel Carvalho
+ */
+
+#include "mem/cache/replacement_policies/lip_rp.hh"
+
+#include "debug/CacheRepl.hh"
+
+LIPRP::LIPRP(const Params *p)
+    : LRURP(p)
+{
+}
+
+void
+LIPRP::reset(CacheBlk *blk)
+{
+    BaseReplacementPolicy::reset(blk);
+
+    // Blocks are inserted as LRU
+    blk->lastTouchTick = 0;
+}
+
+LIPRP*
+LIPRPParams::create()
+{
+    return new LIPRP(this);
+}
diff --git a/src/mem/cache/replacement_policies/lip_rp.hh b/src/mem/cache/replacement_policies/lip_rp.hh
new file mode 100644
index 0000000..8e6abe5
--- /dev/null
+++ b/src/mem/cache/replacement_policies/lip_rp.hh
@@ -0,0 +1,70 @@
+/**
+ * Copyright (c) 2018 Inria
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Daniel Carvalho
+ */
+
+/**
+ * @file
+ * Declaration of a LRU Insertion Policy replacement policy.
+ * Works as the LRU, but instead of placing new blocks with as the MRU,
+ * it places them as LRU.
+ */
+
+#ifndef __MEM_CACHE_REPLACEMENT_POLICIES_LIP_RP_HH__
+#define __MEM_CACHE_REPLACEMENT_POLICIES_LIP_RP_HH__
+
+#include "mem/cache/replacement_policies/lru_rp.hh"
+#include "params/LIPRP.hh"
+
+class LIPRP : public LRURP
+{
+  public:
+    /** Convenience typedef. */
+    typedef LIPRPParams Params;
+
+    /**
+     * Construct and initiliaze this replacement policy.
+     */
+    LIPRP(const Params *p);
+
+    /**
+     * Destructor.
+     */
+    ~LIPRP() {}
+
+    /**
+     * Reset replacement data for a block. Used when a block is inserted.
+     * Sets the insertion tick, and update correspondent replacement data.
+     * Instead of inserting new block as MRU, they are inserted as LRU.
+     *
+     * @param blk Cache block to be reset.
+     */
+    void reset(CacheBlk *blk) override;
+};
+
+#endif // __MEM_CACHE_REPLACEMENT_POLICIES_LIP_RP_HH__

--
To view, visit https://gem5-review.googlesource.com/9002
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-Change-Id: I1a9aa0091ff2cdc1b1652c1d5ec7a3b33fba5b44
Gerrit-Change-Number: 9002
Gerrit-PatchSet: 1
Gerrit-Owner: Daniel Carvalho <oda...@yahoo.com.br>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list
gem5-dev@gem5.org
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to