gem5
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
arch
mips
remote_gdb.hh
Go to the documentation of this file.
1
/*
2
* Copyright 2015 LabWare
3
* Copyright 2014 Google, Inc.
4
* Copyright (c) 2007 The Regents of The University of Michigan
5
* All rights reserved.
6
*
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions are
9
* met: redistributions of source code must retain the above copyright
10
* notice, this list of conditions and the following disclaimer;
11
* redistributions in binary form must reproduce the above copyright
12
* notice, this list of conditions and the following disclaimer in the
13
* documentation and/or other materials provided with the distribution;
14
* neither the name of the copyright holders nor the names of its
15
* contributors may be used to endorse or promote products derived from
16
* this software without specific prior written permission.
17
*
18
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
*
30
* Authors: Nathan Binkert
31
* Boris Shingarov
32
*/
33
34
#ifndef __ARCH_MIPS_REMOTE_GDB_HH__
35
#define __ARCH_MIPS_REMOTE_GDB_HH__
36
37
#include "
arch/mips/registers.hh
"
38
#include "
base/bitfield.hh
"
39
#include "
base/remote_gdb.hh
"
40
41
class
System
;
42
class
ThreadContext
;
43
44
namespace
MipsISA
45
{
46
47
class
RemoteGDB
:
public
BaseRemoteGDB
48
{
49
protected
:
50
bool
acc
(
Addr
addr
,
size_t
len
);
51
52
class
MipsGdbRegCache
:
public
BaseGdbRegCache
53
{
54
using
BaseGdbRegCache::BaseGdbRegCache
;
55
private
:
56
struct
{
57
uint32_t
gpr
[32];
58
uint32_t
sr
;
59
uint32_t
lo
;
60
uint32_t
hi
;
61
uint32_t
badvaddr
;
62
uint32_t
cause
;
63
uint32_t
pc
;
64
uint32_t
fpr
[32];
65
uint32_t
fsr
;
66
uint32_t
fir
;
67
}
r
;
68
public
:
69
char
*
data
()
const
{
return
(
char
*)&
r
; }
70
size_t
size
()
const
{
return
sizeof
(
r
); }
71
void
getRegs
(
ThreadContext
*);
72
void
setRegs
(
ThreadContext
*)
const
;
73
const
std::string
74
name
()
const
75
{
76
return
gdb
->
name
() +
".MipsGdbRegCache"
;
77
}
78
};
79
80
MipsGdbRegCache
regCache
;
81
82
public
:
83
RemoteGDB
(
System
*_system,
ThreadContext
*tc);
84
BaseGdbRegCache
*
gdbRegs
();
85
};
86
87
}
// namespace MipsISA
88
89
#endif
/* __ARCH_MIPS_REMOTE_GDB_H__ */
MipsISA::RemoteGDB::MipsGdbRegCache::badvaddr
uint32_t badvaddr
Definition:
remote_gdb.hh:61
MipsISA::RemoteGDB::MipsGdbRegCache::getRegs
void getRegs(ThreadContext *)
Fill the raw buffer from the registers in the ThreadContext.
Definition:
remote_gdb.cc:175
MipsISA::RemoteGDB::MipsGdbRegCache::hi
uint32_t hi
Definition:
remote_gdb.hh:60
MipsISA::RemoteGDB::MipsGdbRegCache::fir
uint32_t fir
Definition:
remote_gdb.hh:66
BaseRemoteGDB::BaseGdbRegCache::BaseGdbRegCache
BaseGdbRegCache(BaseRemoteGDB *g)
Definition:
remote_gdb.hh:219
BaseRemoteGDB::BaseGdbRegCache::gdb
BaseRemoteGDB * gdb
Definition:
remote_gdb.hh:225
MipsISA::RemoteGDB::RemoteGDB
RemoteGDB(System *_system, ThreadContext *tc)
Definition:
remote_gdb.cc:154
MipsISA::RemoteGDB::MipsGdbRegCache::gpr
uint32_t gpr[32]
Definition:
remote_gdb.hh:57
addr
ip6_addr_t addr
Definition:
inet.hh:335
MipsISA::RemoteGDB::acc
bool acc(Addr addr, size_t len)
Definition:
remote_gdb.cc:163
MipsISA::RemoteGDB::MipsGdbRegCache
Definition:
remote_gdb.hh:52
MipsISA::RemoteGDB::regCache
MipsGdbRegCache regCache
Definition:
remote_gdb.hh:80
MipsISA::RemoteGDB::MipsGdbRegCache::data
char * data() const
Return the pointer to the raw bytes buffer containing the register values.
Definition:
remote_gdb.hh:69
System
Definition:
system.hh:83
MipsISA::RemoteGDB
Definition:
remote_gdb.hh:47
MipsISA::RemoteGDB::MipsGdbRegCache::sr
uint32_t sr
Definition:
remote_gdb.hh:58
MipsISA::RemoteGDB::MipsGdbRegCache::fpr
uint32_t fpr[32]
Definition:
remote_gdb.hh:64
MipsISA::RemoteGDB::MipsGdbRegCache::pc
uint32_t pc
Definition:
remote_gdb.hh:63
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Definition:
thread_context.hh:93
remote_gdb.hh
BaseRemoteGDB::BaseGdbRegCache
Concrete subclasses of this abstract class represent how the register values are transmitted on the w...
Definition:
remote_gdb.hh:183
MipsISA::RemoteGDB::MipsGdbRegCache::r
struct MipsISA::RemoteGDB::MipsGdbRegCache::@18 r
bitfield.hh
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:142
MipsISA::RemoteGDB::gdbRegs
BaseGdbRegCache * gdbRegs()
Definition:
remote_gdb.cc:209
MipsISA::RemoteGDB::MipsGdbRegCache::lo
uint32_t lo
Definition:
remote_gdb.hh:59
BaseRemoteGDB::name
std::string name()
Definition:
remote_gdb.cc:303
MipsISA::RemoteGDB::MipsGdbRegCache::name
const std::string name() const
Return the name to use in places like DPRINTF.
Definition:
remote_gdb.hh:74
MipsISA::RemoteGDB::MipsGdbRegCache::setRegs
void setRegs(ThreadContext *) const
Set the ThreadContext's registers from the values in the raw buffer.
Definition:
remote_gdb.cc:192
MipsISA::RemoteGDB::MipsGdbRegCache::size
size_t size() const
Return the size of the raw buffer, in bytes (i.e., half of the number of digits in the g/G packet)...
Definition:
remote_gdb.hh:70
ArmISA::len
Bitfield< 18, 16 > len
Definition:
miscregs.hh:1626
registers.hh
BaseRemoteGDB
Definition:
remote_gdb.hh:45
MipsISA::RemoteGDB::MipsGdbRegCache::fsr
uint32_t fsr
Definition:
remote_gdb.hh:65
MipsISA::RemoteGDB::MipsGdbRegCache::cause
uint32_t cause
Definition:
remote_gdb.hh:62
Generated on Fri Jun 9 2017 13:03:36 for gem5 by
doxygen
1.8.6