Deleted Added
sdiff udiff text old ( 8990:5d80de4bbf96 ) new ( 9176:6807aa361e80 )
full compact
1/*
2 * Copyright (c) 2011 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

60
61void
62CheckerCPU::init()
63{
64 masterId = systemPtr->getMasterId(name());
65}
66
67CheckerCPU::CheckerCPU(Params *p)
68 : BaseCPU(p, true), thread(NULL), tc(NULL)
69{
70 memReq = NULL;
71 curStaticInst = NULL;
72 curMacroStaticInst = NULL;
73
74 numInst = 0;
75 startNumInst = 0;
76 numLoad = 0;
77 startNumLoad = 0;
78 youngestSN = 0;
79
80 changedPC = willChangePC = changedNextPC = false;
81
82 exitOnError = p->exitOnError;
83 warnOnlyOnLoadError = p->warnOnlyOnLoadError;
84 itb = p->itb;
85 dtb = p->dtb;
86 systemPtr = NULL;
87 workload = p->workload;
88 thread = NULL;
89
90 updateOnError = true;
91}
92
93CheckerCPU::~CheckerCPU()
94{
95}
96

--- 257 unchanged lines hidden ---