gem5  v20.1.0.0
fs_workload.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010, 2012-2013, 2015-2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2002-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __ARCH_ARM_FS_WORKLOAD_HH__
42 #define __ARCH_ARM_FS_WORKLOAD_HH__
43 
44 #include <memory>
45 #include <vector>
46 
47 #include "kern/linux/events.hh"
48 #include "params/ArmFsWorkload.hh"
49 #include "sim/kernel_workload.hh"
50 #include "sim/sim_object.hh"
51 
52 namespace ArmISA
53 {
54 
55 class SkipFunc : public SkipFuncBase
56 {
57  public:
59  void returnFromFuncIn(ThreadContext *tc) override;
60 };
61 
62 class FsWorkload : public KernelWorkload
63 {
64  protected:
67 
72 
79 
88 
89  public:
90  typedef ArmFsWorkloadParams Params;
91  const Params *
92  params() const
93  {
94  return dynamic_cast<const Params *>(&_params);
95  }
96 
97  Addr
98  getEntry() const override
99  {
100  if (bootldr)
101  return bootldr->entryPoint();
102  else
103  return kernelEntry;
104  }
105 
107  getArch() const override
108  {
109  if (bootldr)
110  return bootldr->getArch();
111  else if (kernelObj)
112  return kernelObj->getArch();
113  else
114  return Loader::Arm64;
115  }
116 
117  FsWorkload(Params *p);
118 
119  void initState() override;
120 
121  Addr
122  fixFuncEventAddr(Addr addr) const override
123  {
124  // Remove the low bit that thumb symbols have set
125  // but that aren't actually odd aligned
126  return addr & ~1;
127  }
128 };
129 
130 } // namespace ArmISA
131 
132 #endif // __ARCH_ARM_FS_WORKLOAD_HH__
ArmISA::FsWorkload::FsWorkload
FsWorkload(Params *p)
Definition: fs_workload.cc:72
events.hh
ArmISA::FsWorkload::getBootLoader
Loader::ObjectFile * getBootLoader(Loader::ObjectFile *const obj)
Get a boot loader that matches the kernel.
Definition: fs_workload.cc:145
ArmISA::SkipFunc::returnFromFuncIn
void returnFromFuncIn(ThreadContext *tc) override
Definition: fs_workload.cc:55
KernelWorkload
Definition: kernel_workload.hh:42
ArmISA::FsWorkload::Params
ArmFsWorkloadParams Params
Definition: fs_workload.hh:90
ArmISA::FsWorkload::initState
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
Definition: fs_workload.cc:98
SkipFuncBase
Definition: system_events.hh:34
ArmISA::FsWorkload::bootldr
Loader::ObjectFile * bootldr
Pointer to the bootloader object.
Definition: fs_workload.hh:71
std::vector
STL vector class.
Definition: stl.hh:37
ArmISA
Definition: ccregs.hh:41
Loader::ObjectFile
Definition: object_file.hh:70
Loader::ObjectFile::entryPoint
Addr entryPoint() const
Definition: object_file.hh:108
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
sim_object.hh
ArmISA::FsWorkload::kernelEntry
Addr kernelEntry
This differs from entry since it takes into account where the kernel is loaded in memory (with loadAd...
Definition: fs_workload.hh:78
ArmISA::FsWorkload::bootLoaders
std::vector< std::unique_ptr< Loader::ObjectFile > > bootLoaders
Bootloaders.
Definition: fs_workload.hh:66
ArmISA::FsWorkload
Definition: fs_workload.hh:62
KernelWorkload::kernelObj
Loader::ObjectFile * kernelObj
Definition: kernel_workload.hh:71
ArmISA::FsWorkload::params
const Params * params() const
Definition: fs_workload.hh:92
ArmISA::FsWorkload::getArch
Loader::Arch getArch() const override
Definition: fs_workload.hh:107
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
Loader::Arch
Arch
Definition: object_file.hh:44
Loader::ObjectFile::getArch
Arch getArch() const
Definition: object_file.hh:99
ArmISA::FsWorkload::getEntry
Addr getEntry() const override
Definition: fs_workload.hh:98
addr
ip6_addr_t addr
Definition: inet.hh:423
ArmISA::SkipFunc
Definition: fs_workload.hh:55
Loader::Arm64
@ Arm64
Definition: object_file.hh:51
kernel_workload.hh
SkipFuncBase::SkipFuncBase
SkipFuncBase(PCEventScope *s, const std::string &desc, Addr addr)
Definition: system_events.hh:40
KernelWorkload::_params
const Params & _params
Definition: kernel_workload.hh:48
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
ArmISA::FsWorkload::fixFuncEventAddr
Addr fixFuncEventAddr(Addr addr) const override
Definition: fs_workload.hh:122

Generated on Wed Sep 30 2020 14:01:59 for gem5 by doxygen 1.8.17