Ruby: remove some unused stuff from SLICC files
authorNilay Vaish <nilay@cs.wisc.edu>
Thu, 12 Jul 2012 13:39:18 +0000 (08:39 -0500)
committerNilay Vaish <nilay@cs.wisc.edu>
Thu, 12 Jul 2012 13:39:18 +0000 (08:39 -0500)
src/mem/protocol/RubySlicc_Defines.sm
src/mem/protocol/RubySlicc_Exports.sm
src/mem/protocol/RubySlicc_MemControl.sm
src/mem/protocol/RubySlicc_Profiler.sm
src/mem/protocol/RubySlicc_Util.sm
src/mem/ruby/network/Topology.cc
src/mem/ruby/network/simple/SimpleNetwork.cc
src/mem/ruby/slicc_interface/RubyRequest.hh
src/mem/ruby/slicc_interface/RubySlicc_Profiler_interface.hh
src/mem/ruby/slicc_interface/RubySlicc_Util.hh

index 9bafebf10a45a835c62bce6b7e4117da2b57062b..011cb7664101eb61014e0797188378f5e7332a3c 100644 (file)
@@ -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;
 
index 92739385b41856b57f8c641fcfc5fa3fde1b38f0..b42f9c3a94bb6b1e08f9f6a627099737746b4d45 100644 (file)
@@ -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 @@ enumeration(MaskPredictorTraining, "MaskPredictorTraining_Undefined", desc="..."
   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";
index a51bf09d4c6676e439342ab4c09c12c206f7a352..66bb37bca38b8636a500f47dfdcb30d754db6a93 100644 (file)
@@ -61,7 +61,4 @@ structure(MemoryMsg, desc="...", interface="Message") {
   PrefetchBit Prefetch,         desc="Is this a prefetch request";
   bool ReadX,                   desc="Exclusive";
   int Acks,                     desc="How many acks to expect";
-
-
 }
-
index 773bf0025ce16f12c9af61949b541a9cbfb93247..50fe41fe598728fed406aba5dc598af0476c577d 100644 (file)
 
 // 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 @@ void profile_average_latency_estimate(int latency);
 
 // 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);
-
-
index 92f3f14e8c910a22d73f422aa575b6b67addbd72..e5ef7ca8d54c25b3bf24583e5aeb3b461622fcf8 100644 (file)
@@ -36,22 +36,13 @@ Time get_time();
 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);
index b92fba976dccb237241d89fb4d5b5d0de99ce4d4..540b6bdc09629d68b20dbcf03c86bc42d0274876 100644 (file)
@@ -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"
index 0eb8887d2604b5f089797ff1de50cf125914025c..c2bf5c9553900fa3c763dea9d441f818e0ceb5f0 100644 (file)
@@ -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"
index 0e7ab039d9e4e17a03e0e784937794e085305a3b..870ad1d0e4505852f86ac65c51f821fab0edb7cf 100644 (file)
@@ -38,8 +38,6 @@
 #include "mem/ruby/common/Address.hh"
 #include "mem/packet.hh"
 
-typedef void* RubyPortHandle;
-
 class RubyRequest : public Message
 {
   public:
index bed42018bd5db4ca5252ba36c4a3e8a09fdb5d18..596b00fbebe5c8e934dcd61bd990365251ad6fda 100644 (file)
@@ -51,7 +51,6 @@ void profile_request(const std::string& L1CacheStateStr,
                      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);
index d535ba7cd1ac2c0fcca28d08ec647fe1ff2c2b18..b8fd46dd0ffd1c0306259a73f63ccb92409afcd0 100644 (file)
 
 #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 @@ IDToInt(NodeID id)
     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 @@ getTimeMinusTime(Time t1, Time t2)
     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