HomeSort by relevance Sort by last modified time
    Searched full:allocaholderhandle (Results 1 - 1 of 1) sorted by null

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

Completed in 146 milliseconds