gem5
v19.0.0.0
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
+
Enumerations
a
b
c
d
e
f
i
l
m
o
p
r
s
t
v
x
+
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
w
+
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
+
Enumerations
a
b
c
d
e
f
g
i
l
m
o
p
r
s
t
v
w
+
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
arch
x86
nativetrace.hh
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2007-2009 The Regents of The University of Michigan
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions are
7
* met: redistributions of source code must retain the above copyright
8
* notice, this list of conditions and the following disclaimer;
9
* redistributions in binary form must reproduce the above copyright
10
* notice, this list of conditions and the following disclaimer in the
11
* documentation and/or other materials provided with the distribution;
12
* neither the name of the copyright holders nor the names of its
13
* contributors may be used to endorse or promote products derived from
14
* this software without specific prior written permission.
15
*
16
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
*
28
* Authors: Gabe Black
29
*/
30
31
#ifndef __ARCH_X86_NATIVETRACE_HH__
32
#define __ARCH_X86_NATIVETRACE_HH__
33
34
#include "
base/types.hh
"
35
#include "
cpu/nativetrace.hh
"
36
37
class
ThreadContext
;
38
39
namespace
Trace
{
40
41
class
X86NativeTrace
:
public
NativeTrace
42
{
43
protected
:
44
bool
checkRcx
;
45
bool
checkR11
;
46
uint64_t
oldRcxVal
,
oldR11Val
;
47
uint64_t
oldRealRcxVal
,
oldRealR11Val
;
48
49
struct
ThreadState
{
50
uint64_t
rax
;
51
uint64_t
rcx
;
52
uint64_t
rdx
;
53
uint64_t
rbx
;
54
uint64_t
rsp
;
55
uint64_t
rbp
;
56
uint64_t
rsi
;
57
uint64_t
rdi
;
58
uint64_t
r8
;
59
uint64_t
r9
;
60
uint64_t
r10
;
61
uint64_t
r11
;
62
uint64_t
r12
;
63
uint64_t
r13
;
64
uint64_t
r14
;
65
uint64_t
r15
;
66
uint64_t
rip
;
67
//This should be expanded to 16 if x87 registers are considered
68
uint64_t
mmx
[8];
69
uint64_t
xmm
[32];
70
71
void
update
(
NativeTrace
*parent);
72
void
update
(
ThreadContext
*tc);
73
};
74
75
ThreadState
nState
;
76
ThreadState
mState
;
77
78
bool
checkRcxReg
(
const
char
* regName, uint64_t &, uint64_t &);
79
bool
checkR11Reg
(
const
char
* regName, uint64_t &, uint64_t &);
80
bool
checkXMM
(
int
num, uint64_t mXmmBuf[], uint64_t nXmmBuf[]);
81
82
public
:
83
X86NativeTrace
(
const
Params
*
p
);
84
85
void
check
(
NativeTraceRecord
*record);
86
};
87
88
}
// namespace Trace
89
90
#endif // __ARCH_X86_NATIVETRACE_HH__
Trace::X86NativeTrace::checkRcx
bool checkRcx
Definition:
nativetrace.hh:44
Trace::X86NativeTrace::oldRealR11Val
uint64_t oldRealR11Val
Definition:
nativetrace.hh:47
Trace::X86NativeTrace::ThreadState::r14
uint64_t r14
Definition:
nativetrace.hh:64
Trace::X86NativeTrace::ThreadState::r15
uint64_t r15
Definition:
nativetrace.hh:65
Trace::X86NativeTrace::ThreadState::r11
uint64_t r11
Definition:
nativetrace.hh:61
Trace::X86NativeTrace::nState
ThreadState nState
Definition:
nativetrace.hh:75
Trace::X86NativeTrace::oldRealRcxVal
uint64_t oldRealRcxVal
Definition:
nativetrace.hh:47
Trace::X86NativeTrace::checkXMM
bool checkXMM(int num, uint64_t mXmmBuf[], uint64_t nXmmBuf[])
Definition:
nativetrace.cc:127
Trace::NativeTraceRecord
Definition:
nativetrace.hh:50
Trace::X86NativeTrace::ThreadState::r9
uint64_t r9
Definition:
nativetrace.hh:59
Trace::X86NativeTrace::ThreadState::rcx
uint64_t rcx
Definition:
nativetrace.hh:51
Trace::X86NativeTrace::ThreadState::rsi
uint64_t rsi
Definition:
nativetrace.hh:56
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Definition:
thread_context.hh:93
Trace::X86NativeTrace::ThreadState::r10
uint64_t r10
Definition:
nativetrace.hh:60
Trace::X86NativeTrace::ThreadState
Definition:
nativetrace.hh:49
Trace::X86NativeTrace::ThreadState::r12
uint64_t r12
Definition:
nativetrace.hh:62
Trace::X86NativeTrace::check
void check(NativeTraceRecord *record)
Definition:
nativetrace.cc:141
nativetrace.hh
Trace::X86NativeTrace::ThreadState::rsp
uint64_t rsp
Definition:
nativetrace.hh:54
Trace::X86NativeTrace::ThreadState::rdi
uint64_t rdi
Definition:
nativetrace.hh:57
types.hh
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
Trace::X86NativeTrace::ThreadState::rbx
uint64_t rbx
Definition:
nativetrace.hh:53
Trace::X86NativeTrace::ThreadState::mmx
uint64_t mmx[8]
Definition:
nativetrace.hh:68
Trace::NativeTrace
Definition:
nativetrace.hh:68
Trace::X86NativeTrace::ThreadState::update
void update(NativeTrace *parent)
Definition:
nativetrace.cc:44
Trace::X86NativeTrace::checkR11Reg
bool checkR11Reg(const char *regName, uint64_t &, uint64_t &)
Definition:
nativetrace.cc:117
Trace::X86NativeTrace::checkR11
bool checkR11
Definition:
nativetrace.hh:45
Trace::X86NativeTrace::oldRcxVal
uint64_t oldRcxVal
Definition:
nativetrace.hh:46
Trace::X86NativeTrace
Definition:
nativetrace.hh:41
Trace::X86NativeTrace::X86NativeTrace
X86NativeTrace(const Params *p)
Definition:
nativetrace.cc:99
Trace::X86NativeTrace::ThreadState::r8
uint64_t r8
Definition:
nativetrace.hh:58
Trace::X86NativeTrace::ThreadState::rax
uint64_t rax
Definition:
nativetrace.hh:50
Trace::X86NativeTrace::checkRcxReg
bool checkRcxReg(const char *regName, uint64_t &, uint64_t &)
Definition:
nativetrace.cc:107
Trace::ExeTracer::Params
ExeTracerParams Params
Definition:
exetrace.hh:65
Trace::X86NativeTrace::oldR11Val
uint64_t oldR11Val
Definition:
nativetrace.hh:46
Trace::X86NativeTrace::ThreadState::rip
uint64_t rip
Definition:
nativetrace.hh:66
Trace::X86NativeTrace::mState
ThreadState mState
Definition:
nativetrace.hh:76
Trace::X86NativeTrace::ThreadState::rdx
uint64_t rdx
Definition:
nativetrace.hh:52
Trace::X86NativeTrace::ThreadState::xmm
uint64_t xmm[32]
Definition:
nativetrace.hh:69
MipsISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:325
Trace::X86NativeTrace::ThreadState::rbp
uint64_t rbp
Definition:
nativetrace.hh:55
Trace::X86NativeTrace::ThreadState::r13
uint64_t r13
Definition:
nativetrace.hh:63
Trace
Definition:
nativetrace.cc:52
Generated on Fri Feb 28 2020 16:26:57 for gem5 by
doxygen
1.8.13