Home
last modified time | relevance | path

Searched refs:CleanupSize (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGCleanup.h86 unsigned CleanupSize : 12; variable
283 return sizeof(EHCleanupScope) + CleanupBits.CleanupSize; in getAllocatedSize()
300 CleanupBits.CleanupSize = cleanupSize; in EHCleanupScope()
302 assert(CleanupBits.CleanupSize == cleanupSize && "cleanup size overflow"); in EHCleanupScope()
351 size_t getCleanupSize() const { return CleanupBits.CleanupSize; } in getCleanupSize()
H A DCGCleanup.cpp761 size_t CleanupSize = Scope.getCleanupSize(); in PopCleanupBlock() local
764 if (CleanupSize <= sizeof(CleanupBufferStack)) { in PopCleanupBlock()
765 memcpy(CleanupBufferStack, CleanupSource, CleanupSize); in PopCleanupBlock()
768 CleanupBufferHeap.reset(new char[CleanupSize]); in PopCleanupBlock()
769 memcpy(CleanupBufferHeap.get(), CleanupSource, CleanupSize); in PopCleanupBlock()