123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /**
- * @file llfasttimer.cpp
- * @brief Implementation of the fast timer.
- *
- * $LicenseInfo:firstyear=2004&license=viewergpl$
- *
- * Copyright (c) 2004-2009, Linden Research, Inc.
- *
- * Second Life Viewer Source Code
- * The source code in this file ("Source Code") is provided by Linden Lab
- * to you under the terms of the GNU General Public License, version 2.0
- * ("GPL"), unless you have obtained a separate licensing agreement
- * ("Other License"), formally executed by you and Linden Lab. Terms of
- * the GPL can be found in doc/GPL-license.txt in this distribution, or
- * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
- *
- * There are special exceptions to the terms and conditions of the GPL as
- * it is applied to this Source Code. View the full text of the exception
- * in the file doc/FLOSS-exception.txt in this software distribution, or
- * online at
- * http://secondlifegrid.net/programs/open_source/licensing/flossexception
- *
- * By copying, modifying or distributing this software, you acknowledge
- * that you have read and understood your obligations described above,
- * and agree to abide by those obligations.
- *
- * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
- * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
- * COMPLETENESS OR PERFORMANCE.
- * $/LicenseInfo$
- */
- #include "linden_common.h"
- #include "llfasttimer.h"
- #if LL_FAST_TIMERS_ENABLED
- #include "llsys.h"
- // Statics member variables
- LLFastTimer::EFastTimerType LLFastTimer::sCurType = LLFastTimer::FTM_OTHER;
- LLFastTimer::EFastTimerType LLFastTimer::sType[FTM_MAX_DEPTH];
- S32 LLFastTimer::sCurDepth = 0;
- U64 LLFastTimer::sStart[FTM_MAX_DEPTH];
- U64 LLFastTimer::sCounter[LLFastTimer::FTM_NUM_TYPES];
- U64 LLFastTimer::sCountHistory[FTM_HISTORY_NUM][LLFastTimer::FTM_NUM_TYPES];
- U64 LLFastTimer::sCountAverage[LLFastTimer::FTM_NUM_TYPES];
- U64 LLFastTimer::sCalls[LLFastTimer::FTM_NUM_TYPES];
- U64 LLFastTimer::sCallHistory[FTM_HISTORY_NUM][LLFastTimer::FTM_NUM_TYPES];
- U64 LLFastTimer::sCallAverage[LLFastTimer::FTM_NUM_TYPES];
- S32 LLFastTimer::sCurFrameIndex = -1;
- S32 LLFastTimer::sLastFrameIndex = -1;
- bool LLFastTimer::sPauseHistory = false;
- bool LLFastTimer::sResetHistory = false;
- bool LLFastTimer::sFastTimersEnabled = true;
- U64 LLFastTimer::sClockResolution = 0;
- //static
- void LLFastTimer::reset()
- {
- // Good place to calculate the clock frequency
- if (sClockResolution == 0)
- {
- #if LL_FASTTIMER_USE_RDTSC
- // getCPUFrequency returns MHz and sClockResolution must be in Hz
- sClockResolution =
- U64(LLCPUInfo::getInstance()->getMHz() * 1000000.0);
- #else
- sClockResolution = SEC_TO_MICROSEC_U64;
- #endif
- }
- if (!sFastTimersEnabled)
- {
- return;
- }
- if (sCurDepth != 0)
- {
- llerrs << "Reset when sCurDepth != 0 (" << sCurDepth
- << ") with type number " << sCurType << llendl;
- }
- if (sPauseHistory)
- {
- sResetHistory = true;
- }
- else if (sResetHistory)
- {
- sCurFrameIndex = -1;
- sResetHistory = false;
- }
- else if (sCurFrameIndex >= 0)
- {
- S32 hidx = sCurFrameIndex % FTM_HISTORY_NUM;
- for (S32 i = 0; i < FTM_NUM_TYPES; ++i)
- {
- sCountHistory[hidx][i] = sCounter[i];
- sCountAverage[i] = (sCountAverage[i] * sCurFrameIndex +
- sCounter[i]) / (sCurFrameIndex + 1);
- sCallHistory[hidx][i] = sCalls[i];
- sCallAverage[i] = (sCallAverage[i] * sCurFrameIndex +
- sCalls[i]) / (sCurFrameIndex + 1);
- }
- sLastFrameIndex = sCurFrameIndex;
- }
- else
- {
- for (S32 i = 0; i < FTM_NUM_TYPES; ++i)
- {
- sCountAverage[i] = 0;
- sCallAverage[i] = 0;
- }
- }
- ++sCurFrameIndex;
- for (S32 i = 0; i < FTM_NUM_TYPES; ++i)
- {
- sCounter[i] = 0;
- sCalls[i] = 0;
- }
- sCurDepth = 0;
- }
- //static
- void LLFastTimer::enabledFastTimers(bool enable)
- {
- sFastTimersEnabled = enable;
- if (!enable)
- {
- sCurType = FTM_OTHER;
- }
- }
- #if LL_FAST_TIMERS_CHECK_MAX_DEPTH
- S32 LLFastTimer::sMaxDepth = 0;
- //static
- void LLFastTimer::checkMaxDepth()
- {
- if (sCurDepth > sMaxDepth)
- {
- sMaxDepth = sCurDepth;
- if (sMaxDepth > FTM_MAX_DEPTH)
- {
- llwarns << "Fast timers configured max depth is too small !"
- << llendl;
- }
- llinfos << "Fast timers new max depth = " << sMaxDepth << llendl;
- }
- }
- #endif
- #else // LL_FAST_TIMERS_ENABLED
- // To avoid the LNK4221 warning under Windows while compiling...
- # if LL_WINDOWS && !LL_CLANG
- namespace
- {
- void* dummy;
- }
- # endif
- #endif // LL_FAST_TIMERS_ENABLED
|