base.cc (10529:05b5a6cf3521) | base.cc (10537:47fe87b0cf97) |
---|---|
1/* 2 * Copyright (c) 2011-2012 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 --- 112 unchanged lines hidden (view full) --- 121BaseCPU::BaseCPU(Params *p, bool is_checker) 122 : MemObject(p), instCnt(0), _cpuId(p->cpu_id), _socketId(p->socket_id), 123 _instMasterId(p->system->getMasterId(name() + ".inst")), 124 _dataMasterId(p->system->getMasterId(name() + ".data")), 125 _taskId(ContextSwitchTaskId::Unknown), _pid(Request::invldPid), 126 _switchedOut(p->switched_out), _cacheLineSize(p->system->cacheLineSize()), 127 interrupts(p->interrupts), profileEvent(NULL), 128 numThreads(p->numThreads), system(p->system), | 1/* 2 * Copyright (c) 2011-2012 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 --- 112 unchanged lines hidden (view full) --- 121BaseCPU::BaseCPU(Params *p, bool is_checker) 122 : MemObject(p), instCnt(0), _cpuId(p->cpu_id), _socketId(p->socket_id), 123 _instMasterId(p->system->getMasterId(name() + ".inst")), 124 _dataMasterId(p->system->getMasterId(name() + ".data")), 125 _taskId(ContextSwitchTaskId::Unknown), _pid(Request::invldPid), 126 _switchedOut(p->switched_out), _cacheLineSize(p->system->cacheLineSize()), 127 interrupts(p->interrupts), profileEvent(NULL), 128 numThreads(p->numThreads), system(p->system), |
129 functionTraceStream(nullptr), currentFunctionStart(0), 130 currentFunctionEnd(0), functionEntryTick(0), |
|
129 addressMonitor() 130{ 131 // if Python did not provide a valid ID, do it here 132 if (_cpuId == -1 ) { 133 _cpuId = cpuList.size(); 134 } 135 136 // add self to global list of CPUs --- 599 unchanged lines hidden --- | 131 addressMonitor() 132{ 133 // if Python did not provide a valid ID, do it here 134 if (_cpuId == -1 ) { 135 _cpuId = cpuList.size(); 136 } 137 138 // add self to global list of CPUs --- 599 unchanged lines hidden --- |