diff options
author | Chris Lattner <sabre@nondot.org> | 2002-09-08 18:51:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-09-08 18:51:16 +0000 |
commit | de69a4ca2fd66cc600116a10bef1f3ab1610d62c (patch) | |
tree | d338e2123bac68907d0c4761b7d8516f26ef1e12 /support | |
parent | 96c2ce8614bab233451aac237c4bb1d19963d33f (diff) | |
download | external_llvm-de69a4ca2fd66cc600116a10bef1f3ab1610d62c.zip external_llvm-de69a4ca2fd66cc600116a10bef1f3ab1610d62c.tar.gz external_llvm-de69a4ca2fd66cc600116a10bef1f3ab1610d62c.tar.bz2 |
Checkin initial support for automatic memory leak detection routines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3618 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'support')
-rw-r--r-- | support/lib/Support/LeakDetector.cpp | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/support/lib/Support/LeakDetector.cpp b/support/lib/Support/LeakDetector.cpp new file mode 100644 index 0000000..0d7b4be --- /dev/null +++ b/support/lib/Support/LeakDetector.cpp @@ -0,0 +1,66 @@ +//===-- LeakDetector.cpp - Implement LeakDetector interface ---------------===// +// +// This file implements the LeakDetector class. +// +//===----------------------------------------------------------------------===// + +#include "Support/LeakDetector.h" +#include "llvm/Value.h" +#include <set> +#include <iostream> + +// Lazily allocate set so that release build doesn't have to do anything. +static std::set<const void*> *Objects = 0; +static std::set<const Value*> *LLVMObjects = 0; + +void LeakDetector::addGarbageObjectImpl(void *Object) { + if (Objects == 0) + Objects = new std::set<const void*>(); + assert(Objects->count(Object) == 0 && "Object already in set!"); + Objects->insert(Object); +} + +void LeakDetector::removeGarbageObjectImpl(void *Object) { + if (Objects) + Objects->erase(Object); +} + +void LeakDetector::addGarbageObjectImpl(const Value *Object) { + if (LLVMObjects == 0) + LLVMObjects = new std::set<const Value*>(); + assert(LLVMObjects->count(Object) == 0 && "Object already in set!"); + LLVMObjects->insert(Object); +} + +void LeakDetector::removeGarbageObjectImpl(const Value *Object) { + if (LLVMObjects) + LLVMObjects->erase(Object); +} + +void LeakDetector::checkForGarbageImpl(const std::string &Message) { + if ((Objects && !Objects->empty()) || (LLVMObjects && !LLVMObjects->empty())){ + std::cerr << "Leaked objects found: " << Message << "\n"; + + if (Objects && !Objects->empty()) { + std::cerr << " Non-Value objects leaked:"; + for (std::set<const void*>::iterator I = Objects->begin(), + E = Objects->end(); I != E; ++I) + std::cerr << " " << *I; + } + + if (LLVMObjects && !LLVMObjects->empty()) { + std::cerr << " LLVM Value subclasses leaked:"; + for (std::set<const Value*>::iterator I = LLVMObjects->begin(), + E = LLVMObjects->end(); I != E; ++I) + std::cerr << **I << "\n"; + } + + std::cerr << "This is probably because you removed an LLVM value " + << "(Instruction, BasicBlock, \netc), but didn't delete it. " + << "Please check your code for memory leaks.\n"; + + // Clear out results so we don't get duplicate warnings on next call... + delete Objects; delete LLVMObjects; + Objects = 0; LLVMObjects = 0; + } +} |