2007-07-29 05:30:43 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2001-2005 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* Authors: Steve Reinhardt
|
|
|
|
* Nathan Binkert
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NATIVETRACE_HH__
|
|
|
|
#define __NATIVETRACE_HH__
|
|
|
|
|
|
|
|
#include "base/trace.hh"
|
|
|
|
#include "cpu/static_inst.hh"
|
2009-05-17 23:34:50 +02:00
|
|
|
#include "base/types.hh"
|
2007-07-29 05:30:43 +02:00
|
|
|
#include "sim/insttracer.hh"
|
2007-08-01 21:01:51 +02:00
|
|
|
#include "arch/x86/intregs.hh"
|
2007-09-05 08:39:57 +02:00
|
|
|
#include "arch/x86/floatregs.hh"
|
2007-07-29 05:30:43 +02:00
|
|
|
|
|
|
|
class ThreadContext;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Trace {
|
|
|
|
|
|
|
|
class NativeTrace;
|
|
|
|
|
|
|
|
class NativeTraceRecord : public InstRecord
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
NativeTrace * parent;
|
|
|
|
|
|
|
|
public:
|
|
|
|
NativeTraceRecord(NativeTrace * _parent,
|
|
|
|
Tick _when, ThreadContext *_thread,
|
2009-01-07 07:34:18 +01:00
|
|
|
const StaticInstPtr _staticInst, Addr _pc, bool spec,
|
|
|
|
const StaticInstPtr _macroStaticInst = NULL, MicroPC _upc = 0)
|
|
|
|
: InstRecord(_when, _thread, _staticInst, _pc, spec,
|
|
|
|
_macroStaticInst, _upc),
|
|
|
|
parent(_parent)
|
2007-07-29 05:30:43 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void dump();
|
|
|
|
};
|
|
|
|
|
|
|
|
class NativeTrace : public InstTracer
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
ListenSocket native_listener;
|
|
|
|
|
2007-08-01 21:01:51 +02:00
|
|
|
bool checkRcx;
|
|
|
|
bool checkR11;
|
|
|
|
uint64_t oldRcxVal, oldR11Val;
|
|
|
|
uint64_t oldRealRcxVal, oldRealR11Val;
|
|
|
|
|
|
|
|
struct ThreadState {
|
|
|
|
uint64_t rax;
|
|
|
|
uint64_t rcx;
|
|
|
|
uint64_t rdx;
|
|
|
|
uint64_t rbx;
|
|
|
|
uint64_t rsp;
|
|
|
|
uint64_t rbp;
|
|
|
|
uint64_t rsi;
|
|
|
|
uint64_t rdi;
|
|
|
|
uint64_t r8;
|
|
|
|
uint64_t r9;
|
|
|
|
uint64_t r10;
|
|
|
|
uint64_t r11;
|
|
|
|
uint64_t r12;
|
|
|
|
uint64_t r13;
|
|
|
|
uint64_t r14;
|
|
|
|
uint64_t r15;
|
|
|
|
uint64_t rip;
|
2007-09-05 08:39:57 +02:00
|
|
|
//This should be expanded to 16 if x87 registers are considered
|
|
|
|
uint64_t mmx[8];
|
|
|
|
uint64_t xmm[32];
|
2007-08-01 21:01:51 +02:00
|
|
|
|
|
|
|
void update(int fd)
|
|
|
|
{
|
|
|
|
int bytesLeft = sizeof(ThreadState);
|
|
|
|
int bytesRead = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
int res = read(fd, ((char *)this) + bytesRead, bytesLeft);
|
|
|
|
if(res < 0)
|
|
|
|
panic("Read call failed! %s\n", strerror(errno));
|
|
|
|
bytesLeft -= res;
|
|
|
|
bytesRead += res;
|
|
|
|
} while(bytesLeft);
|
|
|
|
rax = TheISA::gtoh(rax);
|
|
|
|
rcx = TheISA::gtoh(rcx);
|
|
|
|
rdx = TheISA::gtoh(rdx);
|
|
|
|
rbx = TheISA::gtoh(rbx);
|
|
|
|
rsp = TheISA::gtoh(rsp);
|
|
|
|
rbp = TheISA::gtoh(rbp);
|
|
|
|
rsi = TheISA::gtoh(rsi);
|
|
|
|
rdi = TheISA::gtoh(rdi);
|
|
|
|
r8 = TheISA::gtoh(r8);
|
|
|
|
r9 = TheISA::gtoh(r9);
|
|
|
|
r10 = TheISA::gtoh(r10);
|
|
|
|
r11 = TheISA::gtoh(r11);
|
|
|
|
r12 = TheISA::gtoh(r12);
|
|
|
|
r13 = TheISA::gtoh(r13);
|
|
|
|
r14 = TheISA::gtoh(r14);
|
|
|
|
r15 = TheISA::gtoh(r15);
|
|
|
|
rip = TheISA::gtoh(rip);
|
2007-09-05 08:39:57 +02:00
|
|
|
//This should be expanded if x87 registers are considered
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
mmx[i] = TheISA::gtoh(mmx[i]);
|
|
|
|
for (int i = 0; i < 32; i++)
|
|
|
|
xmm[i] = TheISA::gtoh(xmm[i]);
|
2007-08-01 21:01:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void update(ThreadContext * tc)
|
|
|
|
{
|
|
|
|
rax = tc->readIntReg(X86ISA::INTREG_RAX);
|
|
|
|
rcx = tc->readIntReg(X86ISA::INTREG_RCX);
|
|
|
|
rdx = tc->readIntReg(X86ISA::INTREG_RDX);
|
|
|
|
rbx = tc->readIntReg(X86ISA::INTREG_RBX);
|
|
|
|
rsp = tc->readIntReg(X86ISA::INTREG_RSP);
|
|
|
|
rbp = tc->readIntReg(X86ISA::INTREG_RBP);
|
|
|
|
rsi = tc->readIntReg(X86ISA::INTREG_RSI);
|
|
|
|
rdi = tc->readIntReg(X86ISA::INTREG_RDI);
|
|
|
|
r8 = tc->readIntReg(X86ISA::INTREG_R8);
|
|
|
|
r9 = tc->readIntReg(X86ISA::INTREG_R9);
|
|
|
|
r10 = tc->readIntReg(X86ISA::INTREG_R10);
|
|
|
|
r11 = tc->readIntReg(X86ISA::INTREG_R11);
|
|
|
|
r12 = tc->readIntReg(X86ISA::INTREG_R12);
|
|
|
|
r13 = tc->readIntReg(X86ISA::INTREG_R13);
|
|
|
|
r14 = tc->readIntReg(X86ISA::INTREG_R14);
|
|
|
|
r15 = tc->readIntReg(X86ISA::INTREG_R15);
|
|
|
|
rip = tc->readNextPC();
|
2007-09-05 08:39:57 +02:00
|
|
|
//This should be expanded if x87 registers are considered
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
mmx[i] = tc->readFloatRegBits(X86ISA::FLOATREG_MMX(i));
|
|
|
|
for (int i = 0; i < 32; i++)
|
|
|
|
xmm[i] = tc->readFloatRegBits(X86ISA::FLOATREG_XMM_BASE + i);
|
2007-08-01 21:01:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
ThreadState nState;
|
|
|
|
ThreadState mState;
|
|
|
|
|
|
|
|
|
2007-07-29 05:30:43 +02:00
|
|
|
public:
|
|
|
|
|
2007-08-01 21:01:51 +02:00
|
|
|
template<class T>
|
|
|
|
bool
|
|
|
|
checkReg(const char * regName, T &val, T &realVal)
|
|
|
|
{
|
|
|
|
if(val != realVal)
|
|
|
|
{
|
|
|
|
DPRINTFN("Register %s should be %#x but is %#x.\n",
|
|
|
|
regName, realVal, val);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
checkRcxReg(const char * regName, uint64_t &, uint64_t &);
|
|
|
|
|
|
|
|
bool
|
|
|
|
checkR11Reg(const char * regName, uint64_t &, uint64_t &);
|
|
|
|
|
2007-09-05 08:39:57 +02:00
|
|
|
bool
|
|
|
|
checkXMM(int num, uint64_t mXmmBuf[], uint64_t nXmmBuf[]);
|
|
|
|
|
2007-08-31 22:02:58 +02:00
|
|
|
NativeTrace(const Params *p);
|
2007-07-29 05:30:43 +02:00
|
|
|
|
|
|
|
NativeTraceRecord *
|
|
|
|
getInstRecord(Tick when, ThreadContext *tc,
|
2009-01-07 07:34:18 +01:00
|
|
|
const StaticInstPtr staticInst, Addr pc,
|
|
|
|
const StaticInstPtr macroStaticInst = NULL, MicroPC upc = 0)
|
2007-07-29 05:30:43 +02:00
|
|
|
{
|
|
|
|
if (tc->misspeculating())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return new NativeTraceRecord(this, when, tc,
|
2009-01-07 07:34:18 +01:00
|
|
|
staticInst, pc, tc->misspeculating(), macroStaticInst, upc);
|
2007-07-29 05:30:43 +02:00
|
|
|
}
|
|
|
|
|
2007-08-01 21:01:51 +02:00
|
|
|
void
|
|
|
|
check(ThreadContext *, bool syscall);
|
|
|
|
|
2007-07-29 05:30:43 +02:00
|
|
|
friend class NativeTraceRecord;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* namespace Trace */ }
|
|
|
|
|
|
|
|
#endif // __EXETRACE_HH__
|