Searched refs:AllocaHolder (Results 1 – 3 of 3) sorted by relevance
38 class AllocaHolder {42 AllocaHolder() {} in AllocaHolder() function45 AllocaHolder(AllocaHolder &&) = default;46 AllocaHolder &operator=(AllocaHolder &&RHS) = default;48 ~AllocaHolder() { in ~AllocaHolder()69 AllocaHolder Allocas; // Track memory allocated by alloca
38 class AllocaHolder {42 AllocaHolder() {} in AllocaHolder() function45 AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {} in AllocaHolder() function46 AllocaHolder &operator=(AllocaHolder &&RHS) {51 ~AllocaHolder() { in ~AllocaHolder()72 AllocaHolder Allocas; // Track memory allocated by alloca
39 class AllocaHolder {44 AllocaHolder() : RefCnt(0) {} in AllocaHolder() function46 ~AllocaHolder() { in ~AllocaHolder()56 AllocaHolder *H;58 AllocaHolderHandle() : H(new AllocaHolder()) { H->RefCnt++; } in AllocaHolderHandle()