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

  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 34 // AllocaHolder - Object to track all of the blocks of memory allocated by
38 class AllocaHolder {
42 AllocaHolder() {}
45 AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {}
46 AllocaHolder &operator=(AllocaHolder &&RHS) {
51 ~AllocaHolder() {
72 AllocaHolder Allocas; // Track memory allocated by alloca
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
Interpreter.h 35 // AllocaHolder - Object to track all of the blocks of memory allocated by
39 class AllocaHolder {
44 AllocaHolder() : RefCnt(0) {}
46 ~AllocaHolder() {
52 // AllocaHolderHandle gives AllocaHolder value semantics so we can stick it into
56 AllocaHolder *H;
58 AllocaHolderHandle() : H(new AllocaHolder()) { H->RefCnt++; }

Completed in 739 milliseconds