gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
workload.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2019 Google Inc.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met: redistributions of source code must retain the above copyright
7  * notice, this list of conditions and the following disclaimer;
8  * redistributions in binary form must reproduce the above copyright
9  * notice, this list of conditions and the following disclaimer in the
10  * documentation and/or other materials provided with the distribution;
11  * neither the name of the copyright holders nor the names of its
12  * contributors may be used to endorse or promote products derived from
13  * this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #ifndef __SIM_WORKLOAD_HH__
29 #define __SIM_WORKLOAD_HH__
30 
32 #include "base/loader/symtab.hh"
33 #include "params/Workload.hh"
34 #include "sim/sim_object.hh"
35 #include "sim/stats.hh"
36 
37 class System;
38 class ThreadContext;
39 
40 class Workload : public SimObject
41 {
42  protected:
43  virtual Addr fixFuncEventAddr(Addr addr) const { return addr; }
44 
45  struct WorkloadStats : public Stats::Group
46  {
47  struct InstStats: public Stats::Group
48  {
51 
52  InstStats(Stats::Group *parent) : Stats::Group(parent, "inst"),
54  "number of arm instructions executed"),
56  "number of quiesce instructions executed")
57  {}
58 
59  } instStats;
60 
61  WorkloadStats(Workload *workload) : Stats::Group(workload),
62  instStats(workload)
63  {}
64  } stats;
65 
66  public:
67  Workload(const WorkloadParams &params) : SimObject(params), stats(this)
68  {}
69 
71  void recordArm() { stats.instStats.arm++; }
72 
73  System *system = nullptr;
74 
75  virtual Addr getEntry() const = 0;
76  virtual Loader::Arch getArch() const = 0;
77 
78  virtual const Loader::SymbolTable &symtab(ThreadContext *tc) = 0;
79  virtual bool insertSymbol(const Loader::Symbol &symbol) = 0;
80 
81  virtual void
83  {
84  panic("syscall() not implemented.");
85  }
86 
87  virtual void
89  {
90  warn("Unhandled workload event.");
91  }
92 
106  template <class T, typename... Args>
107  T *
108  addFuncEvent(const Loader::SymbolTable &symtab, const char *lbl,
109  const std::string &desc, Args... args)
110  {
111  auto it = symtab.find(lbl);
112  if (it == symtab.end())
113  return nullptr;
114 
115  return new T(system, desc, fixFuncEventAddr(it->address),
116  std::forward<Args>(args)...);
117  }
118 
119  template <class T>
120  T *
121  addFuncEvent(const Loader::SymbolTable &symtab, const char *lbl)
122  {
123  return addFuncEvent<T>(symtab, lbl, lbl);
124  }
125 
126  template <class T, typename... Args>
127  T *
129  Args... args)
130  {
131  T *e = addFuncEvent<T>(symtab, lbl, std::forward<Args>(args)...);
132  panic_if(!e, "Failed to find symbol '%s'", lbl);
133  return e;
134  }
136 };
137 
138 #endif // __SIM_WORKLOAD_HH__
Workload::Workload
Workload(const WorkloadParams &params)
Definition: workload.hh:67
Workload::WorkloadStats::InstStats::quiesce
Stats::Scalar quiesce
Definition: workload.hh:50
warn
#define warn(...)
Definition: logging.hh:239
Workload::stats
Workload::WorkloadStats stats
Workload
Definition: workload.hh:40
Workload::WorkloadStats::instStats
Workload::WorkloadStats::InstStats instStats
Workload::symtab
virtual const Loader::SymbolTable & symtab(ThreadContext *tc)=0
Workload::recordQuiesce
void recordQuiesce()
Definition: workload.hh:70
Loader::SymbolTable
Definition: symtab.hh:58
Workload::WorkloadStats
Definition: workload.hh:45
Stats::Group::Group
Group()=delete
Workload::system
System * system
Definition: workload.hh:73
Loader::SymbolTable::find
const_iterator find(Addr address) const
Definition: symtab.hh:179
Workload::getEntry
virtual Addr getEntry() const =0
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
stats.hh
Workload::addFuncEventOrPanic
T * addFuncEventOrPanic(const Loader::SymbolTable &symtab, const char *lbl, Args... args)
Definition: workload.hh:128
Workload::WorkloadStats::InstStats::arm
Stats::Scalar arm
Definition: workload.hh:49
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
Workload::WorkloadStats::WorkloadStats
WorkloadStats(Workload *workload)
Definition: workload.hh:61
sim_object.hh
System
Definition: system.hh:73
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:71
Workload::insertSymbol
virtual bool insertSymbol(const Loader::Symbol &symbol)=0
Workload::WorkloadStats::InstStats
Definition: workload.hh:47
UNIT_COUNT
#define UNIT_COUNT
Definition: units.hh:49
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
ArmISA::e
Bitfield< 9 > e
Definition: miscregs_types.hh:61
Workload::getArch
virtual Loader::Arch getArch() const =0
Workload::syscall
virtual void syscall(ThreadContext *tc)
Definition: workload.hh:82
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
Loader::SymbolTable::end
const_iterator end() const
Definition: symtab.hh:125
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
Loader::Arch
Arch
Definition: object_file.hh:44
Loader::Symbol
Definition: symtab.hh:45
Workload::fixFuncEventAddr
virtual Addr fixFuncEventAddr(Addr addr) const
Definition: workload.hh:43
Stats::Group
Statistics container.
Definition: group.hh:87
Workload::addFuncEvent
T * addFuncEvent(const Loader::SymbolTable &symtab, const char *lbl, const std::string &desc, Args... args)
Add a function-based event to the given function, to be looked up in the specified symbol table.
Definition: workload.hh:108
Stats
Definition: statistics.cc:53
symtab.hh
Workload::addFuncEvent
T * addFuncEvent(const Loader::SymbolTable &symtab, const char *lbl)
Definition: workload.hh:121
SimObject::params
const Params & params() const
Definition: sim_object.hh:168
Workload::WorkloadStats::InstStats::InstStats
InstStats(Stats::Group *parent)
Definition: workload.hh:52
Workload::recordArm
void recordArm()
Definition: workload.hh:71
object_file.hh
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
Workload::event
virtual void event(ThreadContext *tc)
Definition: workload.hh:88
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

Generated on Tue Jun 22 2021 15:28:30 for gem5 by doxygen 1.8.17