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.
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
14 * documentation and/or other materials provided with the distribution;
15 * neither the name of the copyright holders nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
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
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
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
47class ArrayST : public McPATComponent {
48public:
49    static double area_efficiency_threshold;
50
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;
64
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;
72
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();
81
82    void leakage_feedback(double temperature);
83};
84
85#endif /* ARRAY_H_ */
86