Deleted Added
sdiff udiff text old ( 6397:cb1d7c957f49 ) new ( 6398:7a94cba72e02 )
full compact
1/*
2 * Copyright (c) 2006 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;

--- 22 unchanged lines hidden (view full) ---

31#include "arch/arm/isa_traits.hh"
32#include "arch/arm/miscregs.hh"
33#include "arch/arm/nativetrace.hh"
34#include "cpu/thread_context.hh"
35#include "params/ArmNativeTrace.hh"
36
37namespace Trace {
38
39static const char *regNames[] = {
40 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
41 "r8", "r9", "r10", "fp", "r12", "sp", "lr", "pc",
42 "cpsr"
43};
44
45void
46Trace::ArmNativeTrace::check(NativeTraceRecord *record)
47{
48 ThreadContext *tc = record->getThread();
49
50 uint32_t regVal, realRegVal;
51
52 const char **regName = regNames;
53 // Regular int regs
54 for (int i = 0; i < 15; i++) {
55 regVal = tc->readIntReg(i);
56 read(&realRegVal, sizeof(realRegVal));
57 realRegVal = ArmISA::gtoh(realRegVal);
58 checkReg(*(regName++), regVal, realRegVal);
59 }
60
61 //R15, aliased with the PC
62 regVal = tc->readNextPC();
63 read(&realRegVal, sizeof(realRegVal));
64 realRegVal = ArmISA::gtoh(realRegVal);
65 checkReg(*(regName++), regVal, realRegVal);
66
67 //CPSR
68 regVal = tc->readMiscReg(MISCREG_CPSR);
69 read(&realRegVal, sizeof(realRegVal));
70 realRegVal = ArmISA::gtoh(realRegVal);
71 checkReg(*(regName++), regVal, realRegVal);
72}
73
74} /* namespace Trace */
75
76////////////////////////////////////////////////////////////////////////
77//
78// ExeTracer Simulation Object
79//
80Trace::ArmNativeTrace *
81ArmNativeTraceParams::create()
82{
83 return new Trace::ArmNativeTrace(this);
84};