gem5 v24.0.0.0
Loading...
Searching...
No Matches
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
37#include "cpu/thread_context.hh"
38#include "params/SparcSEWorkload.hh"
39#include "sim/se_workload.hh"
40#include "sim/syscall_abi.hh"
41
42namespace gem5
43{
44
45namespace SparcISA
46{
47
49{
50 public:
51 PARAMS(SparcSEWorkload);
53
54 void
55 setSystem(System *sys) override
56 {
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
83namespace guest_abi
84{
85
86template <typename ABI>
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 }
109 if (pstate.am)
110 val = bits(val, 31, 0);
112 if (ret.count() == 2)
114 }
115};
116
117template <typename Arg>
118struct 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__
static BaseRemoteGDB * build(ListenSocketConfig listen_config, Args... args)
SEWorkload(const Params &p, Addr page_shift=0)
void setSystem(System *sys) override
PARAMS(SparcSEWorkload)
virtual void handleTrap(ThreadContext *tc, int trapNum)
bool is64(ThreadContext *tc)
void setSystem(System *sys) override
virtual void flushWindows(ThreadContext *tc)
This class represents the return value from an emulated system call, including any errno setting.
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?
int errnoValue() const
The errno value.
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual RegVal getReg(const RegId &reg) const
virtual void setReg(const RegId &reg, RegVal val)
virtual RegVal readMiscRegNoEffect(RegIndex misc_reg) const =0
BaseRemoteGDB * gdb
Definition workload.hh:77
System * system
Definition workload.hh:81
STL vector class.
Definition stl.hh:37
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:79
#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
const Params & params() const
atomic_var_t state
Definition helpers.cc:211
constexpr RegId Ccr
Definition int.hh:132
@ MISCREG_PSTATE
Definition misc.hh:67
constexpr auto & SyscallPseudoReturnReg
Definition int.hh:174
constexpr auto & ReturnValueReg
Definition int.hh:169
Bitfield< 63 > val
Definition misc.hh:804
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
uint64_t RegVal
Definition types.hh:173
Overload hash function for BasicBlockRange type.
Definition binary32.hh:81
static const std::vector< RegId > ArgumentRegs

Generated on Tue Jun 18 2024 16:23:57 for gem5 by doxygen 1.11.0