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

sst/core/techModels/libMcPATbeta06/memoryctrl.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 MEMORYCTRL_H_
00050 #define MEMORYCTRL_H_
00051 
00052 #include "XML_Parse.h"
00053 #include "parameter.h"
00054 //#include "io.h"
00055 #include "array.h"
00056 //#include "Undifferentiated_Core_Area.h"
00057 #include <vector>
00058 #include "basic_components.h"
00059 
00060 class MCBackend : public McPATComponent {
00061   public:
00062     InputParameter l_ip;
00063     uca_org_t local_result;
00064     MCParam  mcp;
00065     statsDef tdp_stats;
00066     statsDef rtp_stats;
00067     statsDef stats_t;
00068     powerDef power_t;
00069     MCBackend(InputParameter* interface_ip_, const MCParam & mcp_);
00070     void compute();
00071         void computeEnergy(bool is_tdp=true);
00072     void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true);
00073     ~MCBackend(){};
00074 
00075     //Added for SST
00076     void SSTcomputeEnergy(bool is_tdp=true, double mc_reads=0, double mc_writes=0);
00077 };
00078 
00079 class MCPHY : public McPATComponent {
00080   public:
00081     InputParameter l_ip;
00082     uca_org_t local_result;
00083     MCParam  mcp;
00084     statsDef       tdp_stats;
00085     statsDef       rtp_stats;
00086     statsDef       stats_t;
00087     powerDef       power_t;
00088     MCPHY(InputParameter* interface_ip_, const MCParam & mcp_);
00089     void compute();
00090         void computeEnergy(bool is_tdp=true);
00091     void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true);
00092     ~MCPHY(){};
00093 
00094     //Added for SST
00095     void SSTcomputeEnergy(bool is_tdp=true, double mc_reads=0, double mc_writes=0);
00096 };
00097 
00098 class MCFrontEnd : public McPATComponent {
00099   public:
00100         ParseXML *XML;
00101         InputParameter interface_ip;
00102         MCParam  mcp;
00103         selection_logic * MC_arb;
00104         ArrayST  * frontendBuffer;
00105         ArrayST  * readBuffer;
00106         ArrayST  * writeBuffer;
00107 
00108     MCFrontEnd(ParseXML *XML_interface,InputParameter* interface_ip_, const MCParam & mcp_);
00109     void computeEnergy(bool is_tdp=true);
00110     void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true);
00111     ~MCFrontEnd();
00112 
00113     //Added for SST
00114     void SSTcomputeEnergy(bool is_tdp=true, double mc_reads=0, double mc_writes=0);
00115 };
00116 
00117 class MemoryController : public McPATComponent {
00118   public:
00119         ParseXML *XML;
00120         InputParameter interface_ip;
00121     MCParam  mcp;
00122         MCFrontEnd * frontend;
00123     MCBackend * transecEngine;
00124     MCPHY        * PHY;
00125     Pipeline * pipeLogic;
00126 
00127     //clock_network clockNetwork;
00128     MemoryController(ParseXML *XML_interface,InputParameter* interface_ip_);
00129     void set_mc_param();
00130     void computeEnergy(bool is_tdp=true);
00131     void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true);
00132     ~MemoryController();
00133 
00134 
00135     //Added for SST
00136     void SSTcomputeEnergy(bool is_tdp=true, double mc_reads=0, double mc_writes=0);
00137 };
00138 #endif /* MEMORYCTRL_H_ */

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