gem5 v24.0.0.0
Loading...
Searching...
No Matches
backdoor.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 __MEM_BACKDOOR_HH__
29#define __MEM_BACKDOOR_HH__
30
31#include <cstdint>
32#include <functional>
33#include <memory>
34
35#include "base/addr_range.hh"
36#include "base/callback.hh"
37
38namespace gem5
39{
40
42{
43 public:
44 // Callbacks from this back door are set up using a callable which accepts
45 // a const reference to this back door as their only parameter.
46 typedef std::function<void(const MemBackdoor &backdoor)> CbFunction;
47
48 public:
49 enum Flags
50 {
51 // How data is allowed to be accessed through this backdoor.
52 NoAccess = 0x0,
53 Readable = 0x1,
54 Writeable = 0x2
55 };
56
57 // The range in the guest address space covered by this back door.
58 const AddrRange &range() const { return _range; }
59 void range(const AddrRange &r) { _range = r; }
60
61 // A pointer to the data accessible through this back door.
62 uint8_t *ptr() const { return _ptr; }
63 void ptr(uint8_t *p) { _ptr = p; }
64
65 /*
66 * Helper functions to make it easier to set/check particular flags.
67 */
68
69 bool readable() const { return _flags & Readable; }
70 void
71 readable(bool r)
72 {
73 if (r)
75 else
77 }
78
79 bool writeable() const { return _flags & Writeable; }
80 void
82 {
83 if (w)
85 else
87 }
88
89 Flags flags() const { return _flags; }
90 void flags(Flags f) { _flags = f; }
91
94 {}
95
97 {}
98
99 // Set up a callable to be called when this back door is invalidated. This
100 // lets holders update their bookkeeping to remove any references to it,
101 // and/or to propogate that invalidation to other interested parties.
102 void
104 {
105 invalidationCallbacks.push_back([this,func](){ func(*this); });
106 }
107
108 // Notify and clear invalidation callbacks when the data in the backdoor
109 // structure is no longer valid/current. The backdoor might then be
110 // updated or even deleted without having to worry about stale data being
111 // used.
112 void
118
119 private:
121
123 uint8_t *_ptr;
125};
126
128
130{
131 private:
134
135 public:
137 _range(r), _flags(new_flags)
138 {}
139
140 const AddrRange &range() const { return _range; }
141
142 bool readable() const { return _flags & MemBackdoor::Readable; }
143 bool writeable() const { return _flags & MemBackdoor::Writeable; }
144
145 MemBackdoor::Flags flags() const { return _flags; }
146};
147
148} // namespace gem5
149
150#endif //__MEM_BACKDOOR_HH__
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition addr_range.hh:82
bool writeable() const
Definition backdoor.hh:143
const AddrRange & range() const
Definition backdoor.hh:140
MemBackdoor::Flags flags() const
Definition backdoor.hh:145
bool readable() const
Definition backdoor.hh:142
MemBackdoorReq(AddrRange r, MemBackdoor::Flags new_flags)
Definition backdoor.hh:136
MemBackdoor::Flags _flags
Definition backdoor.hh:133
void range(const AddrRange &r)
Definition backdoor.hh:59
uint8_t * ptr() const
Definition backdoor.hh:62
bool readable() const
Definition backdoor.hh:69
void readable(bool r)
Definition backdoor.hh:71
void ptr(uint8_t *p)
Definition backdoor.hh:63
const AddrRange & range() const
Definition backdoor.hh:58
std::function< void(const MemBackdoor &backdoor)> CbFunction
Definition backdoor.hh:46
void flags(Flags f)
Definition backdoor.hh:90
bool writeable() const
Definition backdoor.hh:79
AddrRange _range
Definition backdoor.hh:122
void addInvalidationCallback(CbFunction func)
Definition backdoor.hh:103
MemBackdoor(AddrRange r, uint8_t *p, Flags flags)
Definition backdoor.hh:92
CallbackQueue invalidationCallbacks
Definition backdoor.hh:120
Flags flags() const
Definition backdoor.hh:89
void writeable(bool w)
Definition backdoor.hh:81
Bitfield< 6 > f
Definition misc_types.hh:68
Bitfield< 0 > p
Bitfield< 0 > w
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
MemBackdoor * MemBackdoorPtr
Definition backdoor.hh:127

Generated on Tue Jun 18 2024 16:24:04 for gem5 by doxygen 1.11.0