gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
system.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * Authors: Ali Saidi
29  */
30 
31 #ifndef __ARCH_SPARC_SYSTEM_HH__
32 #define __ARCH_SPARC_SYSTEM_HH__
33 
34 #include <string>
35 #include <vector>
36 
37 #include "base/loader/symtab.hh"
38 #include "cpu/pc_event.hh"
39 #include "kern/system_events.hh"
40 #include "params/SparcSystem.hh"
41 #include "sim/sim_object.hh"
42 #include "sim/system.hh"
43 
44 class SparcSystem : public System
45 {
46  public:
47  typedef SparcSystemParams Params;
49  ~SparcSystem();
50 
51  void initState() override;
52 
56  public:
57  void serializeSymtab(CheckpointOut &cp) const override;
58  void unserializeSymtab(CheckpointIn &cp) override;
59 
62 
65 
68 
71 
74 
77 
80 
83 
86 
89 
92 
95 
98 
99  protected:
100  const Params *params() const { return (const Params *)_params; }
101 
103  template <class T>
104  T *
105  addResetFuncEvent(const char *lbl)
106  {
107  return addFuncEvent<T>(resetSymtab, lbl);
108  }
109 
111  template <class T>
112  T *
113  addHypervisorFuncEvent(const char *lbl)
114  {
115  return addFuncEvent<T>(hypervisorSymtab, lbl);
116  }
117 
119  template <class T>
120  T *
121  addOpenbootFuncEvent(const char *lbl)
122  {
123  return addFuncEvent<T>(openbootSymtab, lbl);
124  }
125 
126  Addr
128  {
129  //XXX This may eventually have to do something useful.
130  return addr;
131  }
132 };
133 
134 #endif
135 
SymbolTable * partitionDescSymtab
partition desc symbol table?
Definition: system.hh:76
SymbolTable * hypervisorDescSymtab
hypervisor desc symbol table?
Definition: system.hh:73
ObjectFile * hypervisor
Object pointer for the hypervisor code.
Definition: system.hh:82
ip6_addr_t addr
Definition: inet.hh:335
SymbolTable * openbootSymtab
openboot symbol table
Definition: system.hh:67
Definition: system.hh:83
void unserializeSymtab(CheckpointIn &cp) override
If needed, unserialize additional symbol table entries for a specific subclass of this system...
Definition: system.cc:193
const Params * params() const
Definition: system.hh:100
Addr fixFuncEventAddr(Addr addr) override
Fix up an address used to match PCs for hooking simulator events on to target function executions...
Definition: system.hh:127
SparcSystem(Params *p)
Definition: system.cc:43
SymbolTable * hypervisorSymtab
hypervison binary symbol table
Definition: system.hh:64
~SparcSystem()
Definition: system.cc:164
uint64_t Tick
Tick count type.
Definition: types.hh:63
SymbolTable * resetSymtab
reset binary symbol table
Definition: system.hh:61
T * addResetFuncEvent(const char *lbl)
Add a function-based event to reset binary.
Definition: system.hh:105
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
ObjectFile * reset
Object pointer for the reset binary.
Definition: system.hh:79
T * addHypervisorFuncEvent(const char *lbl)
Add a function-based event to the hypervisor.
Definition: system.hh:113
T * addOpenbootFuncEvent(const char *lbl)
Add a function-based event to the openboot.
Definition: system.hh:121
SparcSystemParams Params
Definition: system.hh:47
SymbolTable * nvramSymtab
nvram symbol table?
Definition: system.hh:70
Tick sysTick
System Tick for syncronized tick across all cpus.
Definition: system.hh:97
Params * _params
Definition: system.hh:495
std::ostream CheckpointOut
Definition: serialize.hh:67
ObjectFile * nvram
Object pointer for the nvram image.
Definition: system.hh:88
ObjectFile * partition_desc
Object pointer for the partition description image.
Definition: system.hh:94
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: system.cc:134
void serializeSymtab(CheckpointOut &cp) const override
Serialization stuff.
Definition: system.cc:181
ObjectFile * openboot
Object pointer for the openboot code.
Definition: system.hh:85
Bitfield< 0 > p
ObjectFile * hypervisor_desc
Object pointer for the hypervisor description image.
Definition: system.hh:91

Generated on Fri Jun 9 2017 13:03:34 for gem5 by doxygen 1.8.6