llallocator.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llallocator.cpp
  3.  * @brief Implementation of the LLAllocator class.
  4.  *
  5.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2009-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "linden_common.h"
  33. #include "llallocator.h"
  34. #if LL_USE_TCMALLOC
  35. #include "google/heap-profiler.h"
  36. #include "google/commandlineflags_public.h"
  37. DECLARE_bool(heap_profile_use_stack_trace);
  38. //DECLARE_double(tcmalloc_release_rate);
  39. // static
  40. void LLAllocator::pushMemType(S32 type)
  41. {
  42.     if(isProfiling())
  43.     {
  44.      PushMemType(type);
  45.     }
  46. }
  47. // static
  48. S32 LLAllocator::popMemType()
  49. {
  50.     if (isProfiling())
  51.     {
  52.      return PopMemType();
  53.     }
  54.     else
  55.     {
  56.         return -1;
  57.     }
  58. }
  59. void LLAllocator::setProfilingEnabled(bool should_enable)
  60. {
  61.     // NULL disables dumping to disk
  62.     static char const * const PREFIX = NULL;
  63.     if(should_enable)
  64.     {
  65. HeapProfilerSetUseStackTrace(false);
  66.         HeapProfilerStart(PREFIX);
  67.     }
  68.     else
  69.     {
  70.         HeapProfilerStop();
  71.     }
  72. }
  73. // static
  74. bool LLAllocator::isProfiling()
  75. {
  76.     return IsHeapProfilerRunning();
  77. }
  78. std::string LLAllocator::getRawProfile()
  79. {
  80.     // *TODO - fix google-perftools to accept an buffer to avoid this
  81.     // malloc-copy-free cycle.
  82.     char * buffer = GetHeapProfile();
  83.     std::string ret = buffer;
  84.     free(buffer);
  85.     return ret;
  86. }
  87. #else // LL_USE_TCMALLOC
  88. //
  89. // stub implementations for when tcmalloc is disabled
  90. //
  91. // static
  92. void LLAllocator::pushMemType(S32 type)
  93. {
  94. }
  95. // static
  96. S32 LLAllocator::popMemType()
  97. {
  98.     return -1;
  99. }
  100. void LLAllocator::setProfilingEnabled(bool should_enable)
  101. {
  102. }
  103. // static
  104. bool LLAllocator::isProfiling()
  105. {
  106.     return false;
  107. }
  108. std::string LLAllocator::getRawProfile()
  109. {
  110.     return std::string();
  111. }
  112. #endif // LL_USE_TCMALLOC
  113. LLAllocatorHeapProfile const & LLAllocator::getProfile()
  114. {
  115.     mProf.mLines.clear();
  116.     // *TODO - avoid making all these extra copies of things...
  117.     std::string prof_text = getRawProfile();
  118.     //std::cout << prof_text << std::endl;
  119.     mProf.parse(prof_text);
  120.     return mProf;
  121. }