gem5  v20.0.0.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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 
29 #ifndef __ARCH_X86_NATIVETRACE_HH__
30 #define __ARCH_X86_NATIVETRACE_HH__
31 
32 #include "base/types.hh"
33 #include "cpu/nativetrace.hh"
34 
35 class ThreadContext;
36 
37 namespace Trace {
38 
40 {
41  protected:
42  bool checkRcx;
43  bool checkR11;
44  uint64_t oldRcxVal, oldR11Val;
46 
47  struct ThreadState {
48  uint64_t rax;
49  uint64_t rcx;
50  uint64_t rdx;
51  uint64_t rbx;
52  uint64_t rsp;
53  uint64_t rbp;
54  uint64_t rsi;
55  uint64_t rdi;
56  uint64_t r8;
57  uint64_t r9;
58  uint64_t r10;
59  uint64_t r11;
60  uint64_t r12;
61  uint64_t r13;
62  uint64_t r14;
63  uint64_t r15;
64  uint64_t rip;
65  //This should be expanded to 16 if x87 registers are considered
66  uint64_t mmx[8];
67  uint64_t xmm[32];
68 
69  void update(NativeTrace *parent);
70  void update(ThreadContext *tc);
71  };
72 
75 
76  bool checkRcxReg(const char * regName, uint64_t &, uint64_t &);
77  bool checkR11Reg(const char * regName, uint64_t &, uint64_t &);
78  bool checkXMM(int num, uint64_t mXmmBuf[], uint64_t nXmmBuf[]);
79 
80  public:
81  X86NativeTrace(const Params *p);
82 
83  void check(NativeTraceRecord *record);
84 };
85 
86 } // namespace Trace
87 
88 #endif // __ARCH_X86_NATIVETRACE_HH__
bool checkXMM(int num, uint64_t mXmmBuf[], uint64_t nXmmBuf[])
Definition: nativetrace.cc:125
ThreadContext is the external interface to all thread state for anything outside of the CPU...
void check(NativeTraceRecord *record)
Definition: nativetrace.cc:139
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
void update(NativeTrace *parent)
Definition: nativetrace.cc:42
bool checkR11Reg(const char *regName, uint64_t &, uint64_t &)
Definition: nativetrace.cc:115
X86NativeTrace(const Params *p)
Definition: nativetrace.cc:97
bool checkRcxReg(const char *regName, uint64_t &, uint64_t &)
Definition: nativetrace.cc:105
ExeTracerParams Params
Definition: exetrace.hh:62
Bitfield< 0 > p

Generated on Mon Jun 8 2020 15:34:40 for gem5 by doxygen 1.8.13