gem5  v21.0.1.0
se_workload.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2007 The Hewlett-Packard Development Company
3  *
4  * The license below extends only to copyright in the software and shall
5  * not be construed as granting a license to any other intellectual
6  * property including but not limited to intellectual property relating
7  * to a hardware implementation of the functionality of the software
8  * licensed hereunder. You may use the software subject to the license
9  * terms below provided that you ensure that this notice is replicated
10  * unmodified and in its entirety in all distributions of the software,
11  * modified or unmodified, in source code or in binary form.
12  *
13  * Copyright 2020 Google Inc.
14  *
15  * Redistribution and use in source and binary forms, with or without
16  * modification, are permitted provided that the following conditions are
17  * met: redistributions of source code must retain the above copyright
18  * notice, this list of conditions and the following disclaimer;
19  * redistributions in binary form must reproduce the above copyright
20  * notice, this list of conditions and the following disclaimer in the
21  * documentation and/or other materials provided with the distribution;
22  * neither the name of the copyright holders nor the names of its
23  * contributors may be used to endorse or promote products derived from
24  * this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37  */
38 
39 #ifndef __ARCH_X86_LINUX_SE_WORKLOAD_HH__
40 #define __ARCH_X86_LINUX_SE_WORKLOAD_HH__
41 
42 #include "arch/x86/linux/linux.hh"
43 #include "params/X86EmuLinux.hh"
44 #include "sim/process.hh"
45 #include "sim/se_workload.hh"
46 #include "sim/syscall_abi.hh"
47 #include "sim/syscall_desc.hh"
48 
49 namespace X86ISA
50 {
51 
52 class EmuLinux : public SEWorkload
53 {
54  public:
55  using Params = X86EmuLinuxParams;
56 
57  EmuLinux(const Params &p);
58 
60 
61  void syscall(ThreadContext *tc) override;
62  void event(ThreadContext *tc) override;
63 
64  void pageFault(ThreadContext *tc);
65 
66  struct SyscallABI64 :
68  {
70  };
71 
72  struct SyscallABI32 :
74  {
76  };
77 
78  private:
81 };
82 
83 } // namespace X86ISA
84 
85 namespace GuestABI
86 {
87 
88 template <typename Arg>
89 struct Argument<X86ISA::EmuLinux::SyscallABI32, Arg,
90  typename std::enable_if_t<std::is_integral<Arg>::value &&
91  X86ISA::EmuLinux::SyscallABI32::IsWide<Arg>::value>>
92 {
94 
95  static Arg
96  get(ThreadContext *tc, typename ABI::State &state)
97  {
98  panic_if(state + 1 >= ABI::ArgumentRegs.size(),
99  "Ran out of syscall argument registers.");
100  auto low = ABI::ArgumentRegs[state++];
101  auto high = ABI::ArgumentRegs[state++];
102  return (Arg)ABI::mergeRegs(tc, low, high);
103  }
104 };
105 
106 } // namespace GuestABI
107 
108 #endif // __ARCH_X86_LINUX_SE_WORKLOAD_HH__
X86ISA::EmuLinux::syscall
void syscall(ThreadContext *tc) override
Definition: se_workload.cc:104
X86Linux::SyscallABI
Definition: linux.hh:68
RiscvISA::ArgumentRegs
const std::vector< int > ArgumentRegs
Definition: registers.hh:127
SEWorkload
Definition: se_workload.hh:34
X86ISA::EmuLinux::SyscallABI64::ArgumentRegs
static const std::vector< IntRegIndex > ArgumentRegs
Definition: se_workload.hh:69
X86ISA::EmuLinux::Params
X86EmuLinuxParams Params
Definition: se_workload.hh:55
SyscallDescTable
Definition: syscall_desc.hh:180
GenericSyscallABI::State
int State
Definition: syscall_abi.hh:41
GenericSyscallABI64
Definition: syscall_abi.hh:44
GuestABI::Argument< X86ISA::EmuLinux::SyscallABI32, Arg, typename std::enable_if_t< std::is_integral< Arg >::value &&X86ISA::EmuLinux::SyscallABI32::IsWide< Arg >::value > >::get
static Arg get(ThreadContext *tc, typename ABI::State &state)
Definition: se_workload.hh:96
X86ISA::EmuLinux::event
void event(ThreadContext *tc) override
Definition: se_workload.cc:129
X86ISA::EmuLinux::getArch
::Loader::Arch getArch() const override
Definition: se_workload.hh:59
std::vector< IntRegIndex >
X86ISA::EmuLinux::SyscallABI64
Definition: se_workload.hh:66
syscall_abi.hh
X86ISA::EmuLinux
Definition: se_workload.hh:52
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
X86ISA::EmuLinux::EmuLinux
EmuLinux(const Params &p)
Definition: se_workload.cc:92
GuestABI
Definition: aapcs32.hh:66
X86ISA::EmuLinux::SyscallABI32::ArgumentRegs
static const std::vector< IntRegIndex > ArgumentRegs
Definition: se_workload.hh:75
GuestABI::Argument
Definition: definition.hh:93
process.hh
X86ISA::EmuLinux::pageFault
void pageFault(ThreadContext *tc)
Definition: se_workload.cc:148
X86ISA::EmuLinux::SyscallABI32
Definition: se_workload.hh:72
X86ISA
This is exposed globally, independent of the ISA.
Definition: acpi.hh:55
X86ISA::EmuLinux::syscallDescs32
static SyscallDescTable< SyscallABI32 > syscallDescs32
Definition: se_workload.hh:80
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::X86_64
@ X86_64
Definition: object_file.hh:49
X86ISA::p
Bitfield< 0 > p
Definition: pagetable.hh:148
X86ISA::EmuLinux::syscallDescs64
static SyscallDescTable< SyscallABI64 > syscallDescs64
Definition: se_workload.hh:79
linux.hh
GenericSyscallABI32
Definition: syscall_abi.hh:49
syscall_desc.hh
se_workload.hh

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