Profiler.cc (9231:cecc64db9b3b) Profiler.cc (9275:ef43e69c837a)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

455 for (int j = 0; j < size; j++) {
456 m_busyControllerCount[i][j] = 0;
457 }
458 }
459 m_busyBankCount = 0;
460
461 m_delayedCyclesHistogram.clear();
462 m_delayedCyclesNonPFHistogram.clear();
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

455 for (int j = 0; j < size; j++) {
456 m_busyControllerCount[i][j] = 0;
457 }
458 }
459 m_busyBankCount = 0;
460
461 m_delayedCyclesHistogram.clear();
462 m_delayedCyclesNonPFHistogram.clear();
463 int size = RubySystem::getNetwork()->getNumberOfVirtualNetworks();
463 int size = Network::getNumberOfVirtualNetworks();
464 m_delayedCyclesVCHistograms.resize(size);
465 for (int i = 0; i < size; i++) {
466 m_delayedCyclesVCHistograms[i].clear();
467 }
468
469 m_missLatencyHistograms.resize(RubyRequestType_NUM);
470 for (int i = 0; i < m_missLatencyHistograms.size(); i++) {
471 m_missLatencyHistograms[i].clear(200);

--- 272 unchanged lines hidden ---
464 m_delayedCyclesVCHistograms.resize(size);
465 for (int i = 0; i < size; i++) {
466 m_delayedCyclesVCHistograms[i].clear();
467 }
468
469 m_missLatencyHistograms.resize(RubyRequestType_NUM);
470 for (int i = 0; i < m_missLatencyHistograms.size(); i++) {
471 m_missLatencyHistograms[i].clear(200);

--- 272 unchanged lines hidden ---