ext: add McPAT source
[gem5.git] / ext / mcpat / array.h
1 /*****************************************************************************
2 * McPAT
3 * SOFTWARE LICENSE AGREEMENT
4 * Copyright 2012 Hewlett-Packard Development Company, L.P.
5 * All Rights Reserved
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met: redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer;
11 * redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution;
14 * neither the name of the copyright holders nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.”
29 *
30 ***************************************************************************/
31
32 #ifndef ARRAY_H_
33 #define ARRAY_H_
34
35 #include <iostream>
36 #include <string>
37
38 #include "basic_components.h"
39 #include "cacti_interface.h"
40 #include "component.h"
41 #include "const.h"
42 #include "parameter.h"
43
44 using namespace std;
45
46 class ArrayST :public Component{
47 public:
48 ArrayST(){};
49 ArrayST(const InputParameter *configure_interface, string _name, enum Device_ty device_ty_, bool opt_local_=true, enum Core_type core_ty_=Inorder, bool _is_default=true);
50
51 InputParameter l_ip;
52 string name;
53 enum Device_ty device_ty;
54 bool opt_local;
55 enum Core_type core_ty;
56 bool is_default;
57 uca_org_t local_result;
58
59 statsDef tdp_stats;
60 statsDef rtp_stats;
61 statsDef stats_t;
62 powerDef power_t;
63
64 virtual void optimize_array();
65 virtual void compute_base_power();
66 virtual ~ArrayST();
67
68 void leakage_feedback(double temperature);
69 };
70
71 class InstCache :public Component{
72 public:
73 ArrayST* caches;
74 ArrayST* missb;
75 ArrayST* ifb;
76 ArrayST* prefetchb;
77 powerDef power_t;//temp value holder for both (max) power and runtime power
78 InstCache(){caches=0;missb=0;ifb=0;prefetchb=0;};
79 ~InstCache(){
80 if (caches) {//caches->local_result.cleanup();
81 delete caches; caches=0;}
82 if (missb) {//missb->local_result.cleanup();
83 delete missb; missb=0;}
84 if (ifb) {//ifb->local_result.cleanup();
85 delete ifb; ifb=0;}
86 if (prefetchb) {//prefetchb->local_result.cleanup();
87 delete prefetchb; prefetchb=0;}
88 };
89 };
90
91 class DataCache :public InstCache{
92 public:
93 ArrayST* wbb;
94 DataCache(){wbb=0;};
95 ~DataCache(){
96 if (wbb) {//wbb->local_result.cleanup();
97 delete wbb; wbb=0;}
98 };
99 };
100
101 #endif /* TLB_H_ */