Searched refs:AllocaHolderHandle (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h40 friend class AllocaHolderHandle;
52 // AllocaHolderHandle gives AllocaHolder value semantics so we can stick it into
55 class AllocaHolderHandle { class in namespace:llvm
58 AllocaHolderHandle() : H(new AllocaHolder()) { H->RefCnt++; } function in class:llvm::AllocaHolderHandle
59 AllocaHolderHandle(const AllocaHolderHandle &AH) : H(AH.H) { H->RefCnt++; } function in class:llvm::AllocaHolderHandle
60 ~AllocaHolderHandle() { if (--H->RefCnt == 0) delete H; }
78 AllocaHolderHandle Allocas; // Track memory allocated by alloca

Completed in 2211 milliseconds