blob: a2c64206318cfc034464aa0014df2c5f1869fd9b [file] [log] [blame]
license.botf003cfe2008-08-24 09:55:55 +09001// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit3f4a7322008-07-27 06:49:38 +09004
5// Functions used to debug memory usage, leaks, and other memory issues.
6// All methods are effectively no-ops unless this program is being run through
7// a supported memory tool (currently, only Purify)
8
9#ifndef BASE_MEMORY_DEBUG_H_
mmentovai@google.com79ea2c82008-08-09 05:01:55 +090010#define BASE_MEMORY_DEBUG_H_
11
12#include "base/basictypes.h"
initial.commit3f4a7322008-07-27 06:49:38 +090013
14namespace base {
15
16class MemoryDebug {
mmentovai@google.com79ea2c82008-08-09 05:01:55 +090017 public:
initial.commit3f4a7322008-07-27 06:49:38 +090018 // Since MIU messages are a lot of data, and we don't always want this data,
19 // we have a global switch. If disabled, *MemoryInUse are no-ops.
20 static void SetMemoryInUseEnabled(bool enabled);
21
22 // Dump information about all memory in use.
23 static void DumpAllMemoryInUse();
24 // Dump information about new memory in use since the last
25 // call to DumpAllMemoryInUse() or DumpNewMemoryInUse().
26 static void DumpNewMemoryInUse();
27
28 // Dump information about all current memory leaks.
29 static void DumpAllLeaks();
30 // Dump information about new memory leaks since the last
31 // call to DumpAllLeaks() or DumpNewLeaks()
32 static void DumpNewLeaks();
33
34 // Mark |size| bytes of memory as initialized, so it doesn't produce any UMRs
35 // or UMCs.
36 static void MarkAsInitialized(void* addr, size_t size);
37
mmentovai@google.com79ea2c82008-08-09 05:01:55 +090038 private:
initial.commit3f4a7322008-07-27 06:49:38 +090039 static bool memory_in_use_;
mmentovai@google.com79ea2c82008-08-09 05:01:55 +090040
41 DISALLOW_IMPLICIT_CONSTRUCTORS(MemoryDebug);
initial.commit3f4a7322008-07-27 06:49:38 +090042};
43
mmentovai@google.com79ea2c82008-08-09 05:01:55 +090044} // namespace base
initial.commit3f4a7322008-07-27 06:49:38 +090045
mmentovai@google.com79ea2c82008-08-09 05:01:55 +090046#endif // BASE_MEMORY_DEBUG_H_
license.botf003cfe2008-08-24 09:55:55 +090047