/indra/llcommon/llallocator.h

https://bitbucket.org/lindenlab/viewer-beta/ · C++ Header · 57 lines · 21 code · 11 blank · 25 comment · 0 complexity · bd6e49fecef3955229633ad22c63db91 MD5 · raw file

  1. /**
  2. * @file llallocator.h
  3. * @brief Declaration of the LLAllocator class.
  4. *
  5. * $LicenseInfo:firstyear=2009&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2010, Linden Research, Inc.
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation;
  12. * version 2.1 of the License only.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  24. * $/LicenseInfo$
  25. */
  26. #ifndef LL_LLALLOCATOR_H
  27. #define LL_LLALLOCATOR_H
  28. #include <string>
  29. #include "llmemtype.h"
  30. #include "llallocator_heap_profile.h"
  31. class LL_COMMON_API LLAllocator {
  32. friend class LLMemoryView;
  33. friend class LLMemType;
  34. private:
  35. static void pushMemType(S32 type);
  36. static S32 popMemType();
  37. public:
  38. void setProfilingEnabled(bool should_enable);
  39. static bool isProfiling();
  40. LLAllocatorHeapProfile const & getProfile();
  41. private:
  42. std::string getRawProfile();
  43. private:
  44. LLAllocatorHeapProfile mProf;
  45. };
  46. #endif // LL_LLALLOCATOR_H