gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
se_workload.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2020 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 __ARCH_SPARC_SE_WORKLOAD_HH__
29 #define __ARCH_SPARC_SE_WORKLOAD_HH__
30 
31 #include <vector>
32 
33 #include "arch/sparc/regs/int.hh"
34 #include "arch/sparc/regs/misc.hh"
35 #include "arch/sparc/remote_gdb.hh"
37 #include "cpu/thread_context.hh"
38 #include "params/SparcSEWorkload.hh"
39 #include "sim/se_workload.hh"
40 #include "sim/syscall_abi.hh"
41 
42 namespace gem5
43 {
44 
45 namespace SparcISA
46 {
47 
49 {
50  public:
51  PARAMS(SparcSEWorkload);
53 
54  void
55  setSystem(System *sys) override
56  {
58  gdb = BaseRemoteGDB::build<RemoteGDB>(
59  params().remote_gdb_port, system);
60  }
61 
62  virtual void handleTrap(ThreadContext *tc, int trapNum);
63  virtual void flushWindows(ThreadContext *tc);
64 
65  bool is64(ThreadContext *tc);
66 
68  {
70  };
71 
73  public BaseSyscallABI
74  {};
75 
77  public BaseSyscallABI
78  {};
79 };
80 
81 } // namespace SparcISA
82 
83 namespace guest_abi
84 {
85 
86 template <typename ABI>
87 struct Result<ABI, SyscallReturn,
88  typename std::enable_if_t<std::is_base_of_v<
89  SparcISA::SEWorkload::BaseSyscallABI, ABI>>>
90 {
91  static void
93  {
94  // check for error condition. SPARC syscall convention is to
95  // indicate success/failure in reg the carry bit of the ccr
96  // and put the return value itself in the standard return value reg.
97  SparcISA::PSTATE pstate =
99  SparcISA::CCR ccr = tc->getReg(SparcISA::int_reg::Ccr);
100  RegVal val;
101  if (ret.successful()) {
102  ccr.xcc.c = ccr.icc.c = 0;
103  val = ret.returnValue();
104  } else {
105  ccr.xcc.c = ccr.icc.c = 1;
106  val = ret.errnoValue();
107  }
108  tc->setReg(SparcISA::int_reg::Ccr, ccr);
109  if (pstate.am)
110  val = bits(val, 31, 0);
112  if (ret.count() == 2)
114  }
115 };
116 
117 template <typename Arg>
118 struct Argument<SparcISA::SEWorkload::SyscallABI32, Arg,
119  typename std::enable_if_t<
120  std::is_integral_v<Arg> &&
121  SparcISA::SEWorkload::SyscallABI32::IsWideV<Arg>>>
122 {
124 
125  static Arg
127  {
128  panic_if(state + 1 >= ABI::ArgumentRegs.size(),
129  "Ran out of syscall argument registers.");
130  auto high = ABI::ArgumentRegs[state++];
131  auto low = ABI::ArgumentRegs[state++];
132  return (Arg)ABI::mergeRegs(tc, low, high);
133  }
134 };
135 
136 } // namespace guest_abi
137 } // namespace gem5
138 
139 #endif // __ARCH_SPARC_SE_WORKLOAD_HH__
gem5::ArmISA::SEWorkload::SEWorkload
SEWorkload(const Params &p, Addr page_shift)
Definition: se_workload.hh:47
gem5::SparcISA::SEWorkload::BaseSyscallABI::ArgumentRegs
static const std::vector< RegId > ArgumentRegs
Definition: se_workload.hh:69
misc.hh
gem5::SyscallReturn::returnValue
int64_t returnValue() const
The return value.
Definition: syscall_return.hh:107
gem5::SyscallReturn::errnoValue
int errnoValue() const
The errno value.
Definition: syscall_return.hh:115
gem5::RegVal
uint64_t RegVal
Definition: types.hh:173
gem5::SyscallReturn
This class represents the return value from an emulated system call, including any errno setting.
Definition: syscall_return.hh:55
gem5::ThreadContext::getReg
virtual RegVal getReg(const RegId &reg) const
Definition: thread_context.cc:180
gem5::GenericSyscallABI::State
int State
Definition: syscall_abi.hh:44
gem5::Workload::gdb
BaseRemoteGDB * gdb
Definition: workload.hh:77
gem5::RiscvISA::ArgumentRegs
constexpr RegId ArgumentRegs[]
Definition: int.hh:147
gem5::SparcISA::ReturnValueReg
constexpr auto & ReturnValueReg
Definition: int.hh:169
gem5::X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:776
gem5::GenericSyscallABI64
Definition: syscall_abi.hh:47
std::vector
STL vector class.
Definition: stl.hh:37
syscall_abi.hh
remote_gdb.hh
gem5::SparcISA::SEWorkload::setSystem
void setSystem(System *sys) override
Definition: se_workload.hh:55
gem5::guest_abi::Argument< SparcISA::SEWorkload::SyscallABI32, Arg, typename std::enable_if_t< std::is_integral_v< Arg > &&SparcISA::SEWorkload::SyscallABI32::IsWideV< Arg > > >::get
static Arg get(ThreadContext *tc, typename ABI::State &state)
Definition: se_workload.hh:126
gem5::high
high
Definition: intmath.hh:176
gem5::System
Definition: system.hh:74
gem5::SparcISA::SyscallPseudoReturnReg
constexpr auto & SyscallPseudoReturnReg
Definition: int.hh:174
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
gem5::SimObject::params
const Params & params() const
Definition: sim_object.hh:176
gem5::SparcISA::int_reg::Ccr
constexpr RegId Ccr
Definition: int.hh:132
gem5::SparcISA::SEWorkload::BaseSyscallABI
Definition: se_workload.hh:67
gem5::guest_abi::Result< ABI, SyscallReturn, typename std::enable_if_t< std::is_base_of_v< SparcISA::SEWorkload::BaseSyscallABI, ABI > > >::store
static void store(ThreadContext *tc, const SyscallReturn &ret)
Definition: se_workload.hh:92
int.hh
gem5::bits
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition: bitfield.hh:76
gem5::SparcISA::SEWorkload
Definition: se_workload.hh:48
gem5::ThreadContext::readMiscRegNoEffect
virtual RegVal readMiscRegNoEffect(RegIndex misc_reg) const =0
gem5::ArmISA::SEWorkload
Definition: se_workload.hh:42
gem5::ArmISA::SEWorkload::SyscallABI32
RegABI32 SyscallABI32
Definition: se_workload.hh:61
gem5::SparcISA::SEWorkload::SyscallABI64
Definition: se_workload.hh:76
gem5::GenericSyscallABI32
Definition: syscall_abi.hh:52
state
atomic_var_t state
Definition: helpers.cc:188
gem5::SparcISA::SEWorkload::SyscallABI32
Definition: se_workload.hh:72
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:214
gem5::ArmISA::SEWorkload::setSystem
void setSystem(System *sys) override
Definition: se_workload.hh:52
std
Overload hash function for BasicBlockRange type.
Definition: misc.hh:2909
gem5::SyscallReturn::count
int count() const
How many values did the syscall attempt to return?
Definition: syscall_return.hh:103
gem5::SyscallReturn::value2
int64_t value2() const
Definition: syscall_return.hh:123
gem5::SparcISA::MISCREG_PSTATE
@ MISCREG_PSTATE
Definition: misc.hh:67
gem5::Workload::system
System * system
Definition: workload.hh:81
gem5::guest_abi::Argument
Definition: definition.hh:98
gem5::SparcISA::SEWorkload::flushWindows
virtual void flushWindows(ThreadContext *tc)
Definition: se_workload.cc:98
gem5::SparcISA::SEWorkload::handleTrap
virtual void handleTrap(ThreadContext *tc, int trapNum)
Definition: se_workload.cc:56
gem5::guest_abi::Result
Definition: definition.hh:63
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::SparcISA::SEWorkload::is64
bool is64(ThreadContext *tc)
Definition: se_workload.cc:50
object_file.hh
gem5::SparcISA::SEWorkload::PARAMS
PARAMS(SparcSEWorkload)
thread_context.hh
gem5::SyscallReturn::successful
bool successful() const
Was the system call successful?
Definition: syscall_return.hh:91
se_workload.hh
gem5::ThreadContext::setReg
virtual void setReg(const RegId &reg, RegVal val)
Definition: thread_context.cc:188

Generated on Sun Jul 30 2023 01:56:48 for gem5 by doxygen 1.8.17