changeset 9171e26543fa in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=9171e26543fa
description:
        Ruby: remove some unused stuff from SLICC files

diffstat:

 src/mem/protocol/RubySlicc_Defines.sm                        |   6 +-
 src/mem/protocol/RubySlicc_Exports.sm                        |  53 +-----------
 src/mem/protocol/RubySlicc_MemControl.sm                     |   3 -
 src/mem/protocol/RubySlicc_Profiler.sm                       |  14 ---
 src/mem/protocol/RubySlicc_Util.sm                           |   9 --
 src/mem/ruby/network/Topology.cc                             |   1 -
 src/mem/ruby/network/simple/SimpleNetwork.cc                 |   1 -
 src/mem/ruby/slicc_interface/RubyRequest.hh                  |   2 -
 src/mem/ruby/slicc_interface/RubySlicc_Profiler_interface.hh |   1 -
 src/mem/ruby/slicc_interface/RubySlicc_Util.hh               |  48 ----------
 10 files changed, 5 insertions(+), 133 deletions(-)

diffs (278 lines):

diff -r 6a0ab7d94d4e -r 9171e26543fa src/mem/protocol/RubySlicc_Defines.sm
--- a/src/mem/protocol/RubySlicc_Defines.sm     Wed Jul 11 12:21:04 2012 -0700
+++ b/src/mem/protocol/RubySlicc_Defines.sm     Thu Jul 12 08:39:18 2012 -0500
@@ -28,7 +28,7 @@
  */
 
 // Hack, no node object since base class has them
-NodeID id, no_chip_object="yes", no_vector="yes", abstract_chip_ptr="true";
-NodeID version, no_chip_object="yes", no_vector="yes", 
abstract_chip_ptr="true";
-MachineID machineID, no_chip_object="yes", no_vector="yes", 
abstract_chip_ptr="true";
+NodeID id;
+NodeID version;
+MachineID machineID;
 
diff -r 6a0ab7d94d4e -r 9171e26543fa src/mem/protocol/RubySlicc_Exports.sm
--- a/src/mem/protocol/RubySlicc_Exports.sm     Wed Jul 11 12:21:04 2012 -0700
+++ b/src/mem/protocol/RubySlicc_Exports.sm     Thu Jul 12 08:39:18 2012 -0500
@@ -1,6 +1,6 @@
-
 /*
- * Copyright (c) 1999-2005 Mark D. Hill and David A. Wood
+ * Copyright (c) 1999-2012 Mark D. Hill and David A. Wood
+ * Copyright (c) 2011 Advanced Micro Devices, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -307,55 +307,6 @@
   Both, desc="Both";
 }
 
-// Network Topologies
-enumeration(TopologyType, desc="...") {
-  CROSSBAR, desc="One node per chip, single switch crossbar";
-  HIERARCHICAL_SWITCH, desc="One node per chip, totally ordered hierarchical 
tree switched network";
-  TORUS_2D, desc="One node per chip, 2D torus";
-  PT_TO_PT, desc="One node per chip, Point to Point Network";
-  FILE_SPECIFIED, desc="described by the file NETWORK_FILE";
-}
-
-// DNUCA AllocationStrategy
-enumeration(AllocationStrategy, desc="...") {
-  InMiddle, desc="";
-  InInvCorners, desc="";
-  InSharedSides, desc="";
-  StaticDist, desc="";
-  RandomBank, desc="";
-  FrequencyBank, desc="";
-  FrequencyBlock, desc="";
-  LRUBlock, desc="";
-}
-
-// DNUCA SearchMechanism
-enumeration(SearchMechanism, desc="...") {
-  Perfect, desc="";
-  PartialTag, desc="";
-  BloomFilter, desc="";
-  Random, desc="";
-  None, desc="";
-}
-
-// DNUCA link type
-enumeration(LinkType, desc="...") {
-  RC_1500UM, desc="";
-  RC_2500UM, desc="";
-  TL_9000UM, desc="";
-  TL_11000UM, desc="";
-  TL_13000UM, desc="";
-  NO_ENERGY, desc="";
-  NULL, desc="";
-}
-
-// transient request type
-enumeration(TransientRequestType, desc="...", 
default="TransientRequestType_Undefined") {
-  Undefined, desc="";
-  OffChip, desc="";
-  OnChip, desc="";
-  LocalTransient, desc="";
-}
-
 // Request Status
 enumeration(RequestStatus, desc="...", default="RequestStatus_NULL")  {
   Ready, desc="The sequencer is ready and the request does not alias";
diff -r 6a0ab7d94d4e -r 9171e26543fa src/mem/protocol/RubySlicc_MemControl.sm
--- a/src/mem/protocol/RubySlicc_MemControl.sm  Wed Jul 11 12:21:04 2012 -0700
+++ b/src/mem/protocol/RubySlicc_MemControl.sm  Thu Jul 12 08:39:18 2012 -0500
@@ -61,7 +61,4 @@
   PrefetchBit Prefetch,         desc="Is this a prefetch request";
   bool ReadX,                   desc="Exclusive";
   int Acks,                     desc="How many acks to expect";
-
-
 }
-
diff -r 6a0ab7d94d4e -r 9171e26543fa src/mem/protocol/RubySlicc_Profiler.sm
--- a/src/mem/protocol/RubySlicc_Profiler.sm    Wed Jul 11 12:21:04 2012 -0700
+++ b/src/mem/protocol/RubySlicc_Profiler.sm    Thu Jul 12 08:39:18 2012 -0500
@@ -29,16 +29,9 @@
 
 // Profiler function
 
-void profileStore(NodeID node, bool needCLB);
-void profileCacheCLBsize(int size, int numStaleI);
-void profileMemoryCLBsize(int size, int numStaleI);
-
 // used by 2level exclusive cache protocols
 void profile_miss(RubyRequest msg);
 
-// used by non-fast path protocols
-void profile_L1Cache_miss(RubyRequest msg, NodeID l1cacheID);
-
 // used by CMP protocols
 void profile_request(std::string L1CacheStateStr, std::string L2CacheStateStr,
     std::string directoryStateStr, std::string requestTypeStr);
@@ -55,10 +48,3 @@
 
 // profile the total message delay of a message across a virtual network
 void profileMsgDelay(int virtualNetwork, int delayCycles);
-
-// used by transactional-memory protocols
-void profile_transaction(int numStores);
-void profile_trans_wb();
-void profileOverflow(Address addr, MachineID mach);
-
-
diff -r 6a0ab7d94d4e -r 9171e26543fa src/mem/protocol/RubySlicc_Util.sm
--- a/src/mem/protocol/RubySlicc_Util.sm        Wed Jul 11 12:21:04 2012 -0700
+++ b/src/mem/protocol/RubySlicc_Util.sm        Thu Jul 12 08:39:18 2012 -0500
@@ -36,22 +36,13 @@
 Time zero_time();
 NodeID intToID(int nodenum);
 int IDToInt(NodeID id);
-int addressToInt(Address addr);
-bool multicast_retry();
-int numberOfNodes();
-int numberOfL1CachePerChip();
-int getAddThenMod(int addend1, int addend2, int modulus);
 int time_to_int(Time time);
 Time getTimeModInt(Time time, int modulus);
 Time getTimePlusInt(Time addend1, int addend2);
 Time getTimeMinusTime(Time t1, Time t2);
-Time getPreviousDelayedCycles(Time t1, Time t2);
 void procProfileCoherenceRequest(NodeID node, bool needCLB);
 void dirProfileCoherenceRequest(NodeID node, bool needCLB);
-bool isPerfectProtocol();
-bool L1trainsPrefetcher();
 int max_tokens();
-bool distributedPersistentEnabled();
 Address setOffset(Address addr, int offset);
 Address makeLineAddress(Address addr);
 int addressOffset(Address addr);
diff -r 6a0ab7d94d4e -r 9171e26543fa src/mem/ruby/network/Topology.cc
--- a/src/mem/ruby/network/Topology.cc  Wed Jul 11 12:21:04 2012 -0700
+++ b/src/mem/ruby/network/Topology.cc  Thu Jul 12 08:39:18 2012 -0500
@@ -30,7 +30,6 @@
 
 #include "debug/RubyNetwork.hh"
 #include "mem/protocol/MachineType.hh"
-#include "mem/protocol/TopologyType.hh"
 #include "mem/ruby/common/NetDest.hh"
 #include "mem/ruby/network/BasicLink.hh"
 #include "mem/ruby/network/BasicRouter.hh"
diff -r 6a0ab7d94d4e -r 9171e26543fa 
src/mem/ruby/network/simple/SimpleNetwork.cc
--- a/src/mem/ruby/network/simple/SimpleNetwork.cc      Wed Jul 11 12:21:04 
2012 -0700
+++ b/src/mem/ruby/network/simple/SimpleNetwork.cc      Thu Jul 12 08:39:18 
2012 -0500
@@ -31,7 +31,6 @@
 
 #include "base/cast.hh"
 #include "base/stl_helpers.hh"
-#include "mem/protocol/TopologyType.hh"
 #include "mem/ruby/buffers/MessageBuffer.hh"
 #include "mem/ruby/common/NetDest.hh"
 #include "mem/ruby/network/BasicLink.hh"
diff -r 6a0ab7d94d4e -r 9171e26543fa src/mem/ruby/slicc_interface/RubyRequest.hh
--- a/src/mem/ruby/slicc_interface/RubyRequest.hh       Wed Jul 11 12:21:04 
2012 -0700
+++ b/src/mem/ruby/slicc_interface/RubyRequest.hh       Thu Jul 12 08:39:18 
2012 -0500
@@ -38,8 +38,6 @@
 #include "mem/ruby/common/Address.hh"
 #include "mem/packet.hh"
 
-typedef void* RubyPortHandle;
-
 class RubyRequest : public Message
 {
   public:
diff -r 6a0ab7d94d4e -r 9171e26543fa 
src/mem/ruby/slicc_interface/RubySlicc_Profiler_interface.hh
--- a/src/mem/ruby/slicc_interface/RubySlicc_Profiler_interface.hh      Wed Jul 
11 12:21:04 2012 -0700
+++ b/src/mem/ruby/slicc_interface/RubySlicc_Profiler_interface.hh      Thu Jul 
12 08:39:18 2012 -0500
@@ -51,7 +51,6 @@
                      const std::string& directoryStateStr,
                      const std::string& requestTypeStr);
 void profile_miss(const RubyRequest& msg, NodeID id);
-void profile_L1Cache_miss(const RubyRequest& msg, NodeID id);
 void profile_token_retry(const Address& addr, AccessType type, int count);
 void profile_filter_action(int action);
 void profile_persistent_prediction(const Address& addr, AccessType type);
diff -r 6a0ab7d94d4e -r 9171e26543fa 
src/mem/ruby/slicc_interface/RubySlicc_Util.hh
--- a/src/mem/ruby/slicc_interface/RubySlicc_Util.hh    Wed Jul 11 12:21:04 
2012 -0700
+++ b/src/mem/ruby/slicc_interface/RubySlicc_Util.hh    Thu Jul 12 08:39:18 
2012 -0500
@@ -35,37 +35,17 @@
 
 #include <cassert>
 
-#include "mem/protocol/AccessType.hh"
-#include "mem/protocol/GenericRequestType.hh"
-#include "mem/protocol/MachineType.hh"
-#include "mem/protocol/MessageSizeType.hh"
-#include "mem/protocol/PrefetchBit.hh"
 #include "mem/ruby/common/Address.hh"
 #include "mem/ruby/common/Global.hh"
-#include "mem/ruby/network/Network.hh"
 #include "mem/ruby/slicc_interface/RubySlicc_ComponentMapping.hh"
-#include "mem/ruby/system/MachineID.hh"
 #include "mem/ruby/system/System.hh"
 
-class Set;
-class NetDest;
-
 inline int
 random(int n)
 {
   return random() % n;
 }
 
-inline bool
-multicast_retry()
-{
-    if (RubySystem::getRandomization()) {
-        return (random() & 0x1);
-    } else {
-        return true;
-    }
-}
-
 inline Time
 get_time()
 {
@@ -92,24 +72,6 @@
     return nodenum;
 }
 
-inline int
-addressToInt(Address addr)
-{
-    return (int)addr.getLineAddress();
-}
-
-inline bool
-long_enough_ago(Time event)
-{
-    return ((get_time() - event) > 200);
-}
-
-inline int
-getAddThenMod(int addend1, int addend2, int modulus)
-{
-    return (addend1 + addend2) % modulus;
-}
-
 inline Time
 getTimeModInt(Time time, int modulus)
 {
@@ -129,16 +91,6 @@
     return t1 - t2;
 }
 
-inline Time
-getPreviousDelayedCycles(Time t1, Time t2)
-{
-    if (RubySystem::getRandomization()) {  // when randomizing delayed
-        return 0;
-    } else {
-        return getTimeMinusTime(t1, t2);
-    }
-}
-
 // Return type for time_to_int is "Time" and not "int" so we get a
 // 64-bit integer
 inline Time
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to