/** * @file lltrace.h * @brief Runtime statistics accumulation. * * $LicenseInfo:firstyear=2001&license=viewerlgpl$ * Second Life Viewer Source Code * Copyright (C) 2012, Linden Research, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License only. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA * $/LicenseInfo$ */ #ifndef LL_LLTRACE_H #define LL_LLTRACE_H #include "stdtypes.h" #include "llpreprocessor.h" #include "llmemory.h" #include "llrefcount.h" #include "lltraceaccumulators.h" #include "llthreadlocalstorage.h" #include "lltimer.h" #include namespace LLTrace { class Recording; template T storage_value(T val) { return val; } template STORAGE_TYPE storage_value(LLUnit val) { return val.value(); } template STORAGE_TYPE storage_value(LLUnitImplicit val) { return val.value(); } class TraceBase { public: TraceBase(const char* name, const char* description); virtual ~TraceBase() {}; virtual const char* getUnitLabel() const; const std::string& getName() const { return mName; } const std::string& getDescription() const { return mDescription; } protected: std::string mName; std::string mDescription; }; template class TraceType : public TraceBase, public LLInstanceTracker, std::string> { public: TraceType(const char* name, const char* description = NULL) : LLInstanceTracker, std::string>(name), TraceBase(name, description), mAccumulatorIndex(AccumulatorBuffer::getDefaultBuffer()->reserveSlot()) {} LL_FORCE_INLINE ACCUMULATOR& getCurrentAccumulator() const { ACCUMULATOR* accumulator_storage = LLThreadLocalSingletonPointer::getInstance(); return accumulator_storage ? accumulator_storage[mAccumulatorIndex] : (*AccumulatorBuffer::getDefaultBuffer())[mAccumulatorIndex]; } size_t getIndex() const { return mAccumulatorIndex; } static size_t getNumIndices() { return AccumulatorBuffer::getNumIndices(); } protected: const size_t mAccumulatorIndex; }; template<> class TraceType : public TraceType { public: TraceType(const char* name, const char* description = "") : TraceType(name, description) {} }; template<> class TraceType : public TraceType { public: TraceType(const char* name, const char* description = "") : TraceType(name, description) {} }; template class EventStatHandle : public TraceType { public: typedef F64 storage_t; typedef TraceType trace_t; typedef EventStatHandle self_t; EventStatHandle(const char* name, const char* description = NULL) : trace_t(name, description) {} /*virtual*/ const char* getUnitLabel() const { return LLGetUnitLabel::getUnitLabel(); } }; template void record(EventStatHandle& measurement, VALUE_T value) { T converted_value(value); measurement.getCurrentAccumulator().record(storage_value(converted_value)); } template class SampleStatHandle : public TraceType { public: typedef F64 storage_t; typedef TraceType trace_t; typedef SampleStatHandle self_t; SampleStatHandle(const char* name, const char* description = NULL) : trace_t(name, description) {} /*virtual*/ const char* getUnitLabel() const { return LLGetUnitLabel::getUnitLabel(); } }; template void sample(SampleStatHandle& measurement, VALUE_T value) { T converted_value(value); measurement.getCurrentAccumulator().sample(storage_value(converted_value)); } template class CountStatHandle : public TraceType { public: typedef F64 storage_t; typedef TraceType trace_t; typedef CountStatHandle self_t; CountStatHandle(const char* name, const char* description = NULL) : trace_t(name, description) {} /*virtual*/ const char* getUnitLabel() const { return LLGetUnitLabel::getUnitLabel(); } }; template void add(CountStatHandle& count, VALUE_T value) { T converted_value(value); count.getCurrentAccumulator().add(storage_value(converted_value)); } template<> class TraceType : public TraceType { public: TraceType(const char* name, const char* description = "") : TraceType(name, description) {} }; template<> class TraceType : public TraceType { public: TraceType(const char* name, const char* description = "") : TraceType(name, description) {} }; template<> class TraceType : public TraceType { public: TraceType(const char* name, const char* description = "") : TraceType(name, description) {} }; template<> class TraceType : public TraceType { public: TraceType(const char* name, const char* description = "") : TraceType(name, description) {} }; template<> class TraceType : public TraceType { public: TraceType(const char* name, const char* description = "") : TraceType(name, description) {} }; class MemStatHandle : public TraceType { public: typedef TraceType trace_t; MemStatHandle(const char* name) : trace_t(name) {} void setName(const char* name) { mName = name; setKey(name); } /*virtual*/ const char* getUnitLabel() const { return "KB"; } TraceType& allocations() { return static_cast&>(*(TraceType*)this); } TraceType& deallocations() { return static_cast&>(*(TraceType*)this); } TraceType& shadowAllocations() { return static_cast&>(*(TraceType*)this); } TraceType& shadowDeallocations() { return static_cast&>(*(TraceType*)this); } TraceType& shadowMem() { return static_cast&>(*(TraceType*)this); } }; inline void claim_footprint(MemStatHandle& measurement, S32 size) { MemStatAccumulator& accumulator = measurement.getCurrentAccumulator(); accumulator.mSize.sample(accumulator.mSize.hasValue() ? accumulator.mSize.getLastValue() + (F64)size : (F64)size); accumulator.mAllocated.add(1); } inline void disclaim_footprint(MemStatHandle& measurement, S32 size) { MemStatAccumulator& accumulator = measurement.getCurrentAccumulator(); accumulator.mSize.sample(accumulator.mSize.hasValue() ? accumulator.mSize.getLastValue() - (F64)size : -(F64)size); accumulator.mDeallocated.add(1); } inline void claim_shadow(MemStatHandle& measurement, S32 size) { MemStatAccumulator& accumulator = measurement.getCurrentAccumulator(); accumulator.mShadowSize.sample(accumulator.mSize.hasValue() ? accumulator.mSize.getLastValue() + (F64)size : (F64)size); accumulator.mShadowAllocated.add(1); } inline void disclaim_shadow(MemStatHandle& measurement, S32 size) { MemStatAccumulator& accumulator = measurement.getCurrentAccumulator(); accumulator.mShadowSize.sample(accumulator.mSize.hasValue() ? accumulator.mSize.getLastValue() - (F64)size : -(F64)size); accumulator.mShadowDeallocated.add(1); } // measures effective memory footprint of specified type // specialize to cover different types template struct MeasureMem { static size_t measureFootprint(const T& value) { return sizeof(T); } static size_t measureFootprint() { return sizeof(T); } static size_t measureShadow(const T& value) { return 0; } static size_t measureShadow() { return 0; } }; template struct MeasureMem { static size_t measureFootprint(const T& value) { return sizeof(T) + value.getMemFootprint(); } static size_t measureFootprint() { return sizeof(T); } static size_t measureShadow(const T& value) { return value.getMemShadow(); } static size_t measureShadow() { return MeasureMem::measureShadow(); } }; template struct MeasureMem { static size_t measureFootprint(const T* value) { if (!value) { return 0; } return MeasureMem::measureFootprint(*value); } static size_t measureFootprint() { return MeasureMem::measureFootprint(); } static size_t measureShadow(const T* value) { return MeasureMem::measureShadow(*value); } static size_t measureShadow() { return MeasureMem::measureShadow(); } }; template struct MeasureMem, IS_MEM_TRACKABLE> { static size_t measureFootprint(const std::basic_string& value) { return value.capacity() * sizeof(T); } static size_t measureFootprint() { return sizeof(std::basic_string); } static size_t measureShadow(const std::basic_string& value) { return 0; } static size_t measureShadow() { return 0; } }; template class MemTrackable { public: typedef void mem_trackable_tag_t; enum EMemType { MEM_FOOTPRINT, MEM_SHADOW }; MemTrackable() : mMemFootprint(0), mMemShadow(0) { static bool name_initialized = false; if (!name_initialized) { name_initialized = true; sMemStat.setName(typeid(DERIVED).name()); } } virtual ~MemTrackable() { disclaimMem(mMemFootprint, MEM_FOOTPRINT); disclaimMem(mMemShadow, MEM_SHADOW); } static MemStatHandle& getMemStatHandle() { return sMemStat; } S32 getMemFootprint() const { return mMemFootprint; } S32 getMemShadow() const { return mMemShadow; } void* operator new(size_t size) { claim_footprint(sMemStat, size); return ll_aligned_malloc(ALIGNMENT, size); } void operator delete(void* ptr, size_t size) { disclaim_footprint(sMemStat, size); ll_aligned_free(ALIGNMENT, ptr); } void *operator new [](size_t size) { claim_footprint(sMemStat, size); return ll_aligned_malloc(ALIGNMENT, size); } void operator delete[](void* ptr, size_t size) { disclaim_footprint(sMemStat, size); ll_aligned_free(ALIGNMENT, ptr); } // claim memory associated with other objects/data as our own, adding to our calculated footprint template CLAIM_T& claimMem(CLAIM_T& value, EMemType mem_type = MEM_FOOTPRINT) { trackAlloc(MeasureMem::measureFootprint(value), mem_type); trackAlloc(MeasureMem::measureShadow(value), MEM_SHADOW); return value; } template const CLAIM_T& claimMem(const CLAIM_T& value, EMemType mem_type = MEM_FOOTPRINT) { trackAlloc(MeasureMem::measureFootprint(value), mem_type); trackAlloc(MeasureMem::measureShadow(value), MEM_SHADOW); return value; } size_t& claimMem(size_t& size, EMemType mem_type = MEM_FOOTPRINT) { trackAlloc(size, mem_type); return size; } S32& claimMem(S32& size, EMemType mem_type = MEM_FOOTPRINT) { trackAlloc(size, mem_type); return size; } // remove memory we had claimed from our calculated footprint template CLAIM_T& disclaimMem(CLAIM_T& value, EMemType mem_type = MEM_FOOTPRINT) { trackDealloc(MeasureMem::measureFootprint(value), mem_type); trackDealloc(MeasureMem::measureShadow(value), MEM_SHADOW); return value; } template const CLAIM_T& disclaimMem(const CLAIM_T& value, EMemType mem_type = MEM_FOOTPRINT) { trackDealloc(MeasureMem::measureFootprint(value), mem_type); trackDealloc(MeasureMem::measureShadow(value), MEM_SHADOW); return value; } size_t& disclaimMem(size_t& size, EMemType mem_type = MEM_FOOTPRINT) { trackDealloc(size, mem_type); return size; } S32& disclaimMem(S32& size, EMemType mem_type = MEM_FOOTPRINT) { trackDealloc(size, mem_type); return size; } private: void trackAlloc(S32 size, EMemType mem_type) { if (mem_type == MEM_FOOTPRINT) { claim_footprint(sMemStat, size); mMemFootprint += size; } else { claim_shadow(sMemStat, size); mMemShadow += size; } } void trackDealloc(S32 size, EMemType mem_type) { if (mem_type == MEM_FOOTPRINT) { disclaim_footprint(sMemStat, size); mMemFootprint -= size; } else { disclaim_shadow(sMemStat, size); mMemShadow -= size; } } private: // use signed values so that we can temporarily go negative // and reconcile in destructor // NB: this assumes that no single class is responsible for > 2GB of allocations S32 mMemFootprint, mMemShadow; static MemStatHandle sMemStat; }; template MemStatHandle MemTrackable::sMemStat(""); } #endif // LL_LLTRACE_H