HomeSort by relevance Sort by last modified time
    Searched refs:LeakDetector (Results 1 - 12 of 12) sorted by null

  /external/llvm/unittests/Support/
LeakDetectorTest.cpp 1 //===- llvm/unittest/LeakDetector/LeakDetector.cpp - LeakDetector tests ---===//
11 #include "llvm/Support/LeakDetector.h"
19 TEST(LeakDetector, Death1) {
20 LeakDetector::addGarbageObject((void*) 1);
21 LeakDetector::addGarbageObject((void*) 2);
23 EXPECT_DEATH(LeakDetector::addGarbageObject((void*) 1),
25 EXPECT_DEATH(LeakDetector::addGarbageObject((void*) 2),
  /external/llvm/lib/VMCore/
LeakDetector.cpp 1 //===-- LeakDetector.cpp - Implement LeakDetector interface ---------------===//
10 // This file implements the LeakDetector class.
15 #include "llvm/Support/LeakDetector.h"
32 void LeakDetector::addGarbageObjectImpl(void *Object) {
37 void LeakDetector::addGarbageObjectImpl(const Value *Object) {
42 void LeakDetector::removeGarbageObjectImpl(void *Object) {
47 void LeakDetector::removeGarbageObjectImpl(const Value *Object) {
52 void LeakDetector::checkForGarbageImpl(LLVMContext &Context,
Globals.cpp 22 #include "llvm/Support/LeakDetector.h"
97 LeakDetector::addGarbageObject(this);
116 LeakDetector::addGarbageObject(this);
126 LeakDetector::addGarbageObject(this);
129 LeakDetector::removeGarbageObject(this);
193 LeakDetector::addGarbageObject(this);
205 LeakDetector::addGarbageObject(this);
208 LeakDetector::removeGarbageObject(this);
Android.mk 25 LeakDetector.cpp \
BasicBlock.cpp 22 #include "llvm/Support/LeakDetector.h"
47 LeakDetector::addGarbageObject(this);
87 LeakDetector::addGarbageObject(this);
93 LeakDetector::removeGarbageObject(this);
Function.cpp 21 #include "llvm/Support/LeakDetector.h"
48 LeakDetector::addGarbageObject(this);
57 LeakDetector::addGarbageObject(this);
60 LeakDetector::removeGarbageObject(this);
176 LeakDetector::addGarbageObject(this);
221 LeakDetector::addGarbageObject(this);
224 LeakDetector::removeGarbageObject(this);
Instruction.cpp 20 #include "llvm/Support/LeakDetector.h"
27 LeakDetector::addGarbageObject(this);
41 LeakDetector::addGarbageObject(this);
59 if (!P) LeakDetector::addGarbageObject(this);
61 if (P) LeakDetector::removeGarbageObject(this);
Metadata.cpp 25 #include "llvm/Support/LeakDetector.h"
286 LeakDetector::addGarbageObject(N);
300 LeakDetector::removeGarbageObject(N);
Value.cpp 27 #include "llvm/Support/LeakDetector.h"
83 LeakDetector::removeGarbageObject(this);
  /external/llvm/include/llvm/Support/
LeakDetector.h 1 //===-- llvm/Support/LeakDetector.h - Provide leak detection ----*- C++ -*-===//
32 struct LeakDetector {
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 31 #include "llvm/Support/LeakDetector.h"
43 LeakDetector::removeGarbageObject(this);
80 LeakDetector::removeGarbageObject(N);
86 LeakDetector::addGarbageObject(N);
102 LeakDetector::removeGarbageObject(N);
117 LeakDetector::addGarbageObject(N);
    [all...]
MachineInstr.cpp 39 #include "llvm/Support/LeakDetector.h"
526 LeakDetector::addGarbageObject(this);
551 LeakDetector::addGarbageObject(this);
566 LeakDetector::addGarbageObject(this);
581 LeakDetector::addGarbageObject(this);
597 LeakDetector::addGarbageObject(this);
619 LeakDetector::addGarbageObject(this);
623 LeakDetector::removeGarbageObject(this);
    [all...]

Completed in 741 milliseconds