Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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.cpp766 size_t CleanupSize = Scope.getCleanupSize(); in PopCleanupBlock() local
769 if (CleanupSize <= sizeof(CleanupBufferStack)) { in PopCleanupBlock()
770 memcpy(CleanupBufferStack, CleanupSource, CleanupSize); in PopCleanupBlock()
773 CleanupBufferHeap.reset(new char[CleanupSize]); in PopCleanupBlock()
774 memcpy(CleanupBufferHeap.get(), CleanupSource, CleanupSize); in PopCleanupBlock()