gem5  v22.1.0.0
se_workload.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2015 Ruslan Bukin <br@bsdpad.com>
3  *
4  * This software was developed by the University of Cambridge Computer
5  * Laboratory as part of the CTSRD Project, with support from the UK Higher
6  * Education Innovation Fund (HEIF).
7  *
8  * Copyright 2020 Google Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are
12  * met: redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer;
14  * redistributions in binary form must reproduce the above copyright
15  * notice, this list of conditions and the following disclaimer in the
16  * documentation and/or other materials provided with the distribution;
17  * neither the name of the copyright holders nor the names of its
18  * contributors may be used to endorse or promote products derived from
19  * this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef __ARCH_ARM_FREEBSD_SE_WORKLOAD_HH__
35 #define __ARCH_ARM_FREEBSD_SE_WORKLOAD_HH__
36 
38 #include "arch/arm/page_size.hh"
39 #include "arch/arm/regs/cc.hh"
40 #include "arch/arm/regs/int.hh"
41 #include "arch/arm/se_workload.hh"
42 #include "params/ArmEmuFreebsd.hh"
43 #include "sim/syscall_desc.hh"
44 
45 namespace gem5
46 {
47 
48 namespace ArmISA
49 {
50 
51 class EmuFreebsd : public SEWorkload
52 {
53  public:
54  using Params = ArmEmuFreebsdParams;
55 
57 
58  ByteOrder byteOrder() const override { return ByteOrder::little; }
59 
60  struct BaseSyscallABI {};
62  public BaseSyscallABI
63  {};
65  public BaseSyscallABI
66  {};
67 
68  void syscall(ThreadContext *tc) override;
69 };
70 
71 } // namespace ArmISA
72 
73 GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi);
74 namespace guest_abi
75 {
76 
77 template <typename ABI>
78 struct Result<ABI, SyscallReturn,
79  typename std::enable_if_t<std::is_base_of_v<
80  ArmISA::EmuFreebsd::BaseSyscallABI, ABI>>>
81 {
82  static void
84  {
85  RegVal val;
86  if (ret.successful()) {
88  val = ret.returnValue();
89  } else {
90  tc->setReg(ArmISA::cc_reg::C, 1);
91  val = ret.encodedValue();
92  }
94  if (ret.count() > 1)
96  }
97 };
98 
99 } // namespace guest_abi
100 } // namespace gem5
101 
102 #endif // __ARCH_ARM_FREEBSD_SE_WORKLOAD_HH__
EmuFreebsd(const Params &p)
Definition: se_workload.hh:56
ByteOrder byteOrder() const override
Definition: se_workload.hh:58
ArmEmuFreebsdParams Params
Definition: se_workload.hh:54
void syscall(ThreadContext *tc) override
Definition: se_workload.cc:152
This class represents the return value from an emulated system call, including any errno setting.
int64_t encodedValue() const
The encoded value (as described above)
int64_t returnValue() const
The return value.
int count() const
How many values did the syscall attempt to return?
int64_t value2() const
bool successful() const
Was the system call successful?
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual void setReg(const RegId &reg, RegVal val)
constexpr RegId C
Definition: cc.hh:74
constexpr auto & ReturnValueReg
Definition: int.hh:648
constexpr auto & SyscallPseudoReturnReg
Definition: int.hh:658
const Addr PageShift
Definition: page_size.hh:52
Bitfield< 54 > p
Definition: pagetable.hh:70
Bitfield< 63 > val
Definition: misc.hh:776
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
uint64_t RegVal
Definition: types.hh:173
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
Overload hash function for BasicBlockRange type.
Definition: misc.hh:2826

Generated on Wed Dec 21 2022 10:22:25 for gem5 by doxygen 1.9.1