system.cc (9007:7100059f7bfd) system.cc (9053:9cad1c26c3b3)
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

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

140 // Loading only needs to happen once and after memory system is
141 // connected so it will happen in initState()
142 }
143 }
144
145 // increment the number of running systms
146 numSystemsRunning++;
147
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

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

140 // Loading only needs to happen once and after memory system is
141 // connected so it will happen in initState()
142 }
143 }
144
145 // increment the number of running systms
146 numSystemsRunning++;
147
148 // Set back pointers to the system in all memories
149 for (int x = 0; x < params()->memories.size(); x++)
150 params()->memories[x]->system(this);
148}
149
150System::~System()
151{
152 delete kernelSymtab;
153 delete kernel;
154
155 for (uint32_t j = 0; j < numWorkIds; j++)

--- 287 unchanged lines hidden ---
151}
152
153System::~System()
154{
155 delete kernelSymtab;
156 delete kernel;
157
158 for (uint32_t j = 0; j < numWorkIds; j++)

--- 287 unchanged lines hidden ---