scons: Add '-Wl,--as-needed' to default LINKFLAGS
[gem5.git] / ext / mcpat / memoryctrl.h
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 MEMORYCTRL_H_
34 #define MEMORYCTRL_H_
35
36 #include "array.h"
37 #include "basic_components.h"
38 #include "cachearray.h"
39 #include "parameter.h"
40
41 class MCBackend : public McPATComponent {
42 public:
43 InputParameter l_ip;
44 uca_org_t local_result;
45 MCParameters mcp;
46 MCStatistics mcs;
47 statsDef stats_t;
48
49 MCBackend(XMLNode* _xml_data, InputParameter* interface_ip_,
50 const MCParameters & mcp_, const MCStatistics & mcs_);
51 void computeArea();
52 void computeEnergy();
53 ~MCBackend() {};
54 };
55
56 class MCPHY : public McPATComponent {
57 public:
58 InputParameter l_ip;
59 uca_org_t local_result;
60 MCParameters mcp;
61 MCStatistics mcs;
62 statsDef stats_t;
63
64 MCPHY(XMLNode* _xml_data, InputParameter* interface_ip_,
65 const MCParameters & mcp_, const MCStatistics & mcs_);
66 void computeArea();
67 void computeEnergy();
68 ~MCPHY() {};
69 };
70
71 class MCFrontEnd : public McPATComponent {
72 public:
73 CacheArray* frontendBuffer;
74 CacheArray* readBuffer;
75 CacheArray* writeBuffer;
76 selection_logic* MC_arb;
77
78 InputParameter interface_ip;
79 MCParameters mcp;
80 MCStatistics mcs;
81
82 MCFrontEnd(XMLNode* _xml_data,
83 InputParameter* interface_ip_, const MCParameters & mcp_,
84 const MCStatistics & mcs_);
85 ~MCFrontEnd();
86 };
87
88 class MemoryController : public McPATComponent {
89 public:
90 InputParameter interface_ip;
91 MCParameters mcp;
92 MCStatistics mcs;
93
94 MemoryController(XMLNode* _xml_data, InputParameter* interface_ip_);
95 void initialize_params();
96 void set_mc_param();
97 ~MemoryController();
98 };
99
100 #endif /* MEMORYCTRL_H_ */