gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
layout.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2019 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 __SIM_GUEST_ABI_LAYOUT_HH__
29 #define __SIM_GUEST_ABI_LAYOUT_HH__
30 
31 #include <type_traits>
32 
34 
35 class ThreadContext;
36 
37 namespace GuestABI
38 {
39 
40 /*
41  * State may need to be initialized based on the ThreadContext, for instance
42  * to find out where the stack pointer is initially.
43  */
44 template <typename ABI, typename Enabled=void>
46 {
47  static typename ABI::State
48  init(const ThreadContext *tc)
49  {
50  return typename ABI::State();
51  }
52 };
53 
54 template <typename ABI>
55 struct StateInitializer<ABI, typename std::enable_if_t<
56  std::is_constructible<typename ABI::State, const ThreadContext *>::value>>
57 {
58  static typename ABI::State
59  init(const ThreadContext *tc)
60  {
61  return typename ABI::State(tc);
62  }
63 };
64 
65 template <typename ABI>
66 static typename ABI::State
68 {
69  return StateInitializer<ABI>::init(tc);
70 }
71 
72 /*
73  * This struct template provides a default prepare() method in case the
74  * Result or Argument template doesn't provide one. This is the default in
75  * cases where the return or argument type doesn't affect where things are
76  * stored.
77  */
78 template <typename ABI, template <class ...> class Role,
79  typename Type, typename Enabled=void>
80 struct Preparer
81 {
82  static void
83  prepare(ThreadContext *tc, typename ABI::State &state)
84  {}
85 };
86 
87 /*
88  * If the return or argument type isn't void and does affect where things
89  * are stored, the ABI can implement a prepare() method for the various
90  * argument and/or return types, and this specialization will call into it.
91  */
92 template <typename ABI, template <class ...> class Role, typename Type>
93 struct Preparer<ABI, Role, Type, decltype((void)&Role<ABI, Type>::prepare)>
94 {
95  static void
96  prepare(ThreadContext *tc, typename ABI::State &state)
97  {
98  Role<ABI, Type>::prepare(tc, state);
99  }
100 };
101 
102 template <typename ABI, typename Ret, typename Enabled=void>
103 static void
104 prepareForResult(ThreadContext *tc, typename ABI::State &state)
105 {
107 }
108 
109 template <typename ABI>
110 static void
111 prepareForArguments(ThreadContext *tc, typename ABI::State &state)
112 {
113  return;
114 }
115 
116 template <typename ABI, typename NextArg, typename ...Args>
117 static void
118 prepareForArguments(ThreadContext *tc, typename ABI::State &state)
119 {
121  prepareForArguments<ABI, Args...>(tc, state);
122 }
123 
124 template <typename ABI, typename Ret, typename ...Args>
125 static void
126 prepareForFunction(ThreadContext *tc, typename ABI::State &state)
127 {
128  prepareForResult<ABI, Ret>(tc, state);
129  prepareForArguments<ABI, Args...>(tc, state);
130 }
131 
132 /*
133  * This struct template provides a way to call the Result store method and
134  * optionally pass it the state.
135  */
136 
137 template <typename ABI, typename Ret, typename Enabled=void>
139 {
140  static void
141  store(ThreadContext *tc, const Ret &ret, typename ABI::State &state)
142  {
143  Result<ABI, Ret>::store(tc, ret);
144  }
145 };
146 
147 template <typename Ret, typename State>
148 std::true_type foo(void (*)(ThreadContext *, const Ret &ret, State &state));
149 
150 template <typename Ret>
151 std::false_type foo(void (*)(ThreadContext *, const Ret &ret));
152 
153 template <typename ABI, typename Ret>
154 struct ResultStorer<ABI, Ret, typename std::enable_if_t<
155  std::is_same<void (*)(ThreadContext *, const Ret &, typename ABI::State &),
156  decltype(&Result<ABI, Ret>::store)>::value>>
157 {
158  static void
159  store(ThreadContext *tc, const Ret &ret, typename ABI::State &state)
160  {
161  Result<ABI, Ret>::store(tc, ret, state);
162  }
163 };
164 
165 /*
166  * Function templates to wrap the Result::store and Argument::get methods.
167  */
168 
169 template <typename ABI, typename Ret>
170 static void
171 storeResult(ThreadContext *tc, const Ret &ret, typename ABI::State &state)
172 {
173  ResultStorer<ABI, Ret>::store(tc, ret, state);
174 }
175 
176 template <typename ABI, typename Arg>
177 static Arg
178 getArgument(ThreadContext *tc, typename ABI::State &state)
179 {
180  return Argument<ABI, Arg>::get(tc, state);
181 }
182 
183 } // namespace GuestABI
184 
185 #endif // __SIM_GUEST_ABI_LAYOUT_HH__
GuestABI::StateInitializer
Definition: layout.hh:45
definition.hh
GuestABI::ResultStorer< ABI, Ret, typename std::enable_if_t< std::is_same< void(*)(ThreadContext *, const Ret &, typename ABI::State &), decltype(&Result< ABI, Ret >::store)>::value > >::store
static void store(ThreadContext *tc, const Ret &ret, typename ABI::State &state)
Definition: layout.hh:159
GuestABI::getArgument
static Arg getArgument(ThreadContext *tc, typename ABI::State &state)
Definition: layout.hh:178
GuestABI::StateInitializer< ABI, typename std::enable_if_t< std::is_constructible< typename ABI::State, const ThreadContext * >::value > >::init
static ABI::State init(const ThreadContext *tc)
Definition: layout.hh:59
GuestABI::prepareForArguments
static void prepareForArguments(ThreadContext *tc, typename ABI::State &state)
Definition: layout.hh:111
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
GuestABI
Definition: aapcs32.hh:66
GuestABI::prepareForResult
static void prepareForResult(ThreadContext *tc, typename ABI::State &state)
Definition: layout.hh:104
GuestABI::Argument
Definition: definition.hh:93
GuestABI::Preparer::prepare
static void prepare(ThreadContext *tc, typename ABI::State &state)
Definition: layout.hh:83
GuestABI::initializeState
static ABI::State initializeState(const ThreadContext *tc)
Definition: layout.hh:67
GuestABI::ResultStorer::store
static void store(ThreadContext *tc, const Ret &ret, typename ABI::State &state)
Definition: layout.hh:141
GuestABI::Result
Definition: definition.hh:58
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
GuestABI::ResultStorer
Definition: layout.hh:138
GuestABI::storeResult
static void storeResult(ThreadContext *tc, const Ret &ret, typename ABI::State &state)
Definition: layout.hh:171
GuestABI::StateInitializer::init
static ABI::State init(const ThreadContext *tc)
Definition: layout.hh:48
GuestABI::Preparer< ABI, Role, Type, decltype((void)&Role< ABI, Type >::prepare)>::prepare
static void prepare(ThreadContext *tc, typename ABI::State &state)
Definition: layout.hh:96
GuestABI::prepareForFunction
static void prepareForFunction(ThreadContext *tc, typename ABI::State &state)
Definition: layout.hh:126
GuestABI::foo
std::true_type foo(void(*)(ThreadContext *, const Ret &ret, State &state))
GuestABI::Preparer
Definition: layout.hh:80

Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17