array.h (10152:52c552138ba1) array.h (10234:5cb711fa6176)
1/*****************************************************************************
2 * McPAT
3 * SOFTWARE LICENSE AGREEMENT
4 * Copyright 2012 Hewlett-Packard Development Company, L.P.
1/*****************************************************************************
2 * McPAT
3 * SOFTWARE LICENSE AGREEMENT
4 * Copyright 2012 Hewlett-Packard Development Company, L.P.
5 * Copyright (c) 2010-2013 Advanced Micro Devices, Inc.
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

--- 7 unchanged lines hidden (view full) ---

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
6 * All Rights Reserved
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met: redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer;
12 * redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the

--- 7 unchanged lines hidden (view full) ---

21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (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 * 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
44using namespace std;
45
30 *
31 ***************************************************************************/
32
33#ifndef ARRAY_H_
34#define ARRAY_H_
35
36#include <iostream>
37#include <string>
38
39#include "basic_components.h"
40#include "cacti_interface.h"
41#include "component.h"
42#include "const.h"
43#include "parameter.h"
44
45using namespace std;
46
46class 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);
47class ArrayST : public McPATComponent {
48public:
49 static double area_efficiency_threshold;
50
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;
51 // These are used for the CACTI interface.
52 static int ed;
53 static int delay_wt;
54 static int cycle_time_wt;
55 static int area_wt;
56 static int dynamic_power_wt;
57 static int leakage_power_wt;
58 static int delay_dev;
59 static int cycle_time_dev;
60 static int area_dev;
61 static int dynamic_power_dev;
62 static int leakage_power_dev;
63 static int cycle_time_dev_threshold;
58
64
59 statsDef tdp_stats;
60 statsDef rtp_stats;
61 statsDef stats_t;
62 powerDef power_t;
65 InputParameter l_ip;
66 enum Device_ty device_ty;
67 bool opt_local;
68 enum Core_type core_ty;
69 bool is_default;
70 uca_org_t local_result;
71 statsDef stats_t;
63
72
64 virtual void optimize_array();
65 virtual void compute_base_power();
66 virtual ~ArrayST();
73 ArrayST(XMLNode* _xml_data, const InputParameter *configure_interface,
74 string _name, enum Device_ty device_ty_, double _clockRate = 0.0f,
75 bool opt_local_ = true,
76 enum Core_type core_ty_ = Inorder, bool _is_default = true);
77 void computeArea();
78 void computeEnergy();
79 void compute_base_power();
80 ~ArrayST();
67
81
68 void leakage_feedback(double temperature);
82 void leakage_feedback(double temperature);
69};
70
83};
84
71class InstCache :public Component{
72public:
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
91class DataCache :public InstCache{
92public:
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_ */
85#endif /* ARRAY_H_ */