gem5  v20.0.0.3
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 
36 class System;
37 class ThreadContext;
38 
39 class Workload : public SimObject
40 {
41  protected:
42  virtual Addr fixFuncEventAddr(Addr addr) const { return addr; }
43 
44  public:
46 
47  System *system = nullptr;
48 
49  virtual Addr getEntry() const = 0;
50  virtual Loader::Arch getArch() const = 0;
51 
52  virtual const Loader::SymbolTable *symtab(ThreadContext *tc) = 0;
53  virtual bool insertSymbol(Addr address, const std::string &symbol) = 0;
54 
68  template <class T, typename... Args>
69  T *
70  addFuncEvent(const Loader::SymbolTable *symtab, const char *lbl,
71  const std::string &desc, Args... args)
72  {
73  Addr addr M5_VAR_USED = 0; // initialize only to avoid compiler warning
74 
75  if (symtab->findAddress(lbl, addr)) {
76  return new T(system, desc, fixFuncEventAddr(addr),
77  std::forward<Args>(args)...);
78  }
79 
80  return nullptr;
81  }
82 
83  template <class T>
84  T *
85  addFuncEvent(const Loader::SymbolTable *symtab, const char *lbl)
86  {
87  return addFuncEvent<T>(symtab, lbl, lbl);
88  }
89 
90  template <class T, typename... Args>
91  T *
93  Args... args)
94  {
95  T *e = addFuncEvent<T>(symtab, lbl, std::forward<Args>(args)...);
96  panic_if(!e, "Failed to find symbol '%s'", lbl);
97  return e;
98  }
100 };
101 
102 #endif // __SIM_WORKLOAD_HH__
bool findAddress(const std::string &symbol, Addr &address) const
Definition: symtab.hh:97
T * addFuncEventOrPanic(const Loader::SymbolTable *symtab, const char *lbl, Args... args)
Definition: workload.hh:92
virtual const Loader::SymbolTable * symtab(ThreadContext *tc)=0
ip6_addr_t addr
Definition: inet.hh:330
Definition: system.hh:72
ThreadContext is the external interface to all thread state for anything outside of the CPU...
virtual Loader::Arch getArch() const =0
virtual bool insertSymbol(Addr address, const std::string &symbol)=0
virtual Addr fixFuncEventAddr(Addr addr) const
Definition: workload.hh:42
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
T * addFuncEvent(const Loader::SymbolTable *symtab, const char *lbl)
Definition: workload.hh:85
Bitfield< 9 > e
virtual Addr getEntry() const =0
SimObject(const Params *_params)
Definition: sim_object.cc:55
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:70
System * system
Definition: workload.hh:47
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:181
Abstract superclass for simulation objects.
Definition: sim_object.hh:93

Generated on Fri Jul 3 2020 15:53:05 for gem5 by doxygen 1.8.13