system.cc (11146:0fd6976303bc) system.cc (11420:b48c0ba4f524)
1/*
2 * Copyright (c) 2011-2014 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

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

90 loadAddrOffset(p->load_offset),
91 nextPID(0),
92 physmem(name() + ".physmem", p->memories, p->mmap_using_noreserve),
93 memoryMode(p->mem_mode),
94 _cacheLineSize(p->cache_line_size),
95 workItemsBegin(0),
96 workItemsEnd(0),
97 numWorkIds(p->num_work_ids),
1/*
2 * Copyright (c) 2011-2014 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

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

90 loadAddrOffset(p->load_offset),
91 nextPID(0),
92 physmem(name() + ".physmem", p->memories, p->mmap_using_noreserve),
93 memoryMode(p->mem_mode),
94 _cacheLineSize(p->cache_line_size),
95 workItemsBegin(0),
96 workItemsEnd(0),
97 numWorkIds(p->num_work_ids),
98 thermalModel(p->thermal_model),
98 _params(p),
99 totalNumInsts(0),
100 instEventQueue("system instruction-based event queue")
101{
102 // add self to global system list
103 systemList.push_back(this);
104
105 if (FullSystem) {

--- 380 unchanged lines hidden ---
99 _params(p),
100 totalNumInsts(0),
101 instEventQueue("system instruction-based event queue")
102{
103 // add self to global system list
104 systemList.push_back(this);
105
106 if (FullSystem) {

--- 380 unchanged lines hidden ---