• Main Page
  • Related Pages
  • Modules
  • Data Structures
  • Files
  • File List
  • Globals

sst/core/techModels/libMcPATbeta/sharedcache.h

00001 /*****************************************************************************
00002  *                                McPAT
00003  *                      SOFTWARE LICENSE AGREEMENT
00004  *            Copyright 2009 Hewlett-Packard Development Company, L.P.
00005  *                          All Rights Reserved
00006  *
00007  * Permission to use, copy, and modify this software and its documentation is
00008  * hereby granted only under the following terms and conditions.  Both the
00009  * above copyright notice and this permission notice must appear in all copies
00010  * of the software, derivative works or modified versions, and any portions
00011  * thereof, and both notices must appear in supporting documentation.
00012  *
00013  * Any User of the software ("User"), by accessing and using it, agrees to the
00014  * terms and conditions set forth herein, and hereby grants back to Hewlett-
00015  * Packard Development Company, L.P. and its affiliated companies ("HP") a
00016  * non-exclusive, unrestricted, royalty-free right and license to copy,
00017  * modify, distribute copies, create derivate works and publicly display and
00018  * use, any changes, modifications, enhancements or extensions made to the
00019  * software by User, including but not limited to those affording
00020  * compatibility with other hardware or software, but excluding pre-existing
00021  * software applications that may incorporate the software.  User further
00022  * agrees to use its best efforts to inform HP of any such changes,
00023  * modifications, enhancements or extensions.
00024  *
00025  * Correspondence should be provided to HP at:
00026  *
00027  * Director of Intellectual Property Licensing
00028  * Office of Strategy and Technology
00029  * Hewlett-Packard Company
00030  * 1501 Page Mill Road
00031  * Palo Alto, California  94304
00032  *
00033  * The software may be further distributed by User (but not offered for
00034  * sale or transferred for compensation) to third parties, under the
00035  * condition that such third parties agree to abide by the terms and
00036  * conditions of this license.
00037  *
00038  * THE SOFTWARE IS PROVIDED "AS IS" WITH ANY AND ALL ERRORS AND DEFECTS
00039  * AND USER ACKNOWLEDGES THAT THE SOFTWARE MAY CONTAIN ERRORS AND DEFECTS.
00040  * HP DISCLAIMS ALL WARRANTIES WITH REGARD TO THE SOFTWARE, INCLUDING ALL
00041  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL
00042  * HP BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
00043  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
00044  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER ACTION, ARISING
00045  * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE SOFTWARE.
00046  *
00047  ***************************************************************************/
00048 
00049 #ifndef SHAREDCACHE_H_
00050 #define SHAREDCACHE_H_
00051 #include "XML_Parse.h"
00052 #include "area.h"
00053 #include "parameter.h"
00054 #include "array.h"
00055 #include "logic.h"
00056 #include <vector>
00057 #include "basic_components.h"
00058 
00059 class SharedCache :public McPATComponent{
00060   public:
00061     ParseXML * XML;
00062     int ithCache;
00063         InputParameter interface_ip;
00064         enum cache_level cacheL;
00065     DataCache unicache;//Shared cache
00066     CacheDynParam cachep;
00067     //  cache_processor llCache,directory, directory1, inv_dir;
00068 
00069     //pipeline pipeLogicCache, pipeLogicDirectory;
00070     //clock_network                             clockNetwork;
00071     double scktRatio, executionTime;
00072     //   McPATComponent L2Tot, cc, cc1, ccTot;
00073 
00074     SharedCache(ParseXML *XML_interface, int ithCache_, InputParameter* interface_ip_,enum cache_level cacheL_ =L2);
00075     void set_cache_param();
00076         void computeEnergy(bool is_tdp=true);
00077     void displayEnergy(uint32_t indent = 0,bool is_tdp=true);
00078     ~SharedCache(){};
00079      //Added for SST
00080     void SSTcomputeEnergy(bool is_tdp=true, double L2read=0, double L2readmiss=0, double L2write=0, double L2writemiss=0, double L3read=0, double L3readmiss=0, double L3write=0, double L3writemiss=0, double L1Dirread=0, double L1Dirreadmiss=0, double L1Dirwrite=0, double L1Dirwritemiss=0,double L2Dirread=0, double L2Dirreadmiss=0, double L2Dirwrite=0, double L2Dirwritemiss=0);
00081 
00082 };
00083 
00084 class CCdir :public McPATComponent{
00085   public:
00086     ParseXML * XML;
00087     int ithCache;
00088         InputParameter interface_ip;
00089     DataCache dc;//Shared cache
00090     ArrayST * shadow_dir;
00091 //      cache_processor llCache,directory, directory1, inv_dir;
00092 
00093     //pipeline pipeLogicCache, pipeLogicDirectory;
00094     //clock_network                             clockNetwork;
00095     double scktRatio, clockRate, executionTime;
00096     McPATComponent L2Tot, cc, cc1, ccTot;
00097 
00098     CCdir(ParseXML *XML_interface, int ithCache_, InputParameter* interface_ip_);
00099     void computeEnergy(bool is_tdp=true);
00100     void displayEnergy(uint32_t indent = 0,bool is_tdp=true);
00101     ~CCdir();
00102 };
00103 
00104 #endif /* SHAREDCACHE_H_ */

Generated on Fri Oct 22 2010 11:02:16 for SST by  doxygen 1.7.1