Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCleanup.h87 unsigned CleanupSize : 12; variable
284 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.cpp749 size_t CleanupSize = Scope.getCleanupSize(); in PopCleanupBlock() local
752 if (CleanupSize <= sizeof(CleanupBufferStack)) { in PopCleanupBlock()
753 memcpy(CleanupBufferStack, CleanupSource, CleanupSize); in PopCleanupBlock()
756 CleanupBufferHeap.reset(new char[CleanupSize]); in PopCleanupBlock()
757 memcpy(CleanupBufferHeap.get(), CleanupSource, CleanupSize); in PopCleanupBlock()