cpu.cc (8832:247fee427324) cpu.cc (8876:44f8e7bb7fdf)
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

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

59
60void
61CheckerCPU::init()
62{
63 masterId = systemPtr->getMasterId(name());
64}
65
66CheckerCPU::CheckerCPU(Params *p)
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

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

59
60void
61CheckerCPU::init()
62{
63 masterId = systemPtr->getMasterId(name());
64}
65
66CheckerCPU::CheckerCPU(Params *p)
67 : BaseCPU(p), thread(NULL), tc(NULL)
67 : BaseCPU(p, true), thread(NULL), tc(NULL)
68{
69 memReq = NULL;
70 curStaticInst = NULL;
71 curMacroStaticInst = NULL;
72
73 numInst = 0;
74 startNumInst = 0;
75 numLoad = 0;

--- 274 unchanged lines hidden ---
68{
69 memReq = NULL;
70 curStaticInst = NULL;
71 curMacroStaticInst = NULL;
72
73 numInst = 0;
74 startNumInst = 0;
75 numLoad = 0;

--- 274 unchanged lines hidden ---