greenplumn CMemoryPool 源码

  • 2022-08-18
  • 浏览 (263)

greenplumn CMemoryPool 代码

文件路径:/src/backend/gporca/libgpos/src/memory/CMemoryPool.cpp

//---------------------------------------------------------------------------
//	Greenplum Database
//	Copyright (C) 2008-2010 Greenplum Inc.
//	Copyright (C) 2011 EMC Corp.
//
//	@filename:
//		CMemoryPool.cpp
//
//	@doc:
//		Implementation of abstract interface;
//		implements helper functions for extraction of allocation
//		header from memory block;
//---------------------------------------------------------------------------

#include "gpos/memory/CMemoryPool.h"

#include "gpos/memory/CMemoryPoolManager.h"
#include "gpos/memory/CMemoryPoolTracker.h"
#include "gpos/memory/CMemoryVisitorPrint.h"
#include "gpos/task/ITask.h"


using namespace gpos;

// invalid exception
const ULONG_PTR CMemoryPool::m_invalid = ULONG_PTR_MAX;

// get user requested size of allocation
ULONG
CMemoryPool::UserSizeOfAlloc(const void *ptr)
{
	GPOS_ASSERT(nullptr != ptr);

	return CMemoryPoolManager::GetMemoryPoolMgr()->UserSizeOfAlloc(ptr);
}


void
CMemoryPool::DeleteImpl(void *ptr, EAllocationType eat)
{
	CMemoryPoolManager::GetMemoryPoolMgr()->DeleteImpl(ptr, eat);
}

#ifdef GPOS_DEBUG

//---------------------------------------------------------------------------
//	@function:
//		CMemoryPool::Print
//
//	@doc:
//		Walk all objects and print identification
//
//---------------------------------------------------------------------------
IOstream &
CMemoryPool::OsPrint(IOstream &os)
{
	os << "Memory pool: " << this;

	ITask *task = ITask::Self();
	if (nullptr != task && task->IsTraceSet(EtracePrintMemoryLeakStackTrace))
	{
		os << ", stack trace: " << std::endl;
		m_stack_desc.AppendTrace(os, 8 /*ulDepth*/);
	}
	else
	{
		os << std::endl;
	}

	if (SupportsLiveObjectWalk())
	{
		CMemoryVisitorPrint visitor(os);
		WalkLiveObjects(&visitor);
	}

	return os;
}

//---------------------------------------------------------------------------
//	@function:
//		CMemoryPool::AssertEmpty
//
//	@doc:
//		Static helper function to print out if the given pool is empty;
//		if the pool is not empty and we are compiled with debugging on then
//		an assertion will be thrown;
//
//---------------------------------------------------------------------------
void
CMemoryPool::AssertEmpty(IOstream &os)
{
	if (SupportsLiveObjectWalk() && nullptr != ITask::Self() &&
		!GPOS_FTRACE(EtraceDisablePrintMemoryLeak))
	{
		CMemoryVisitorPrint visitor(os);
		WalkLiveObjects(&visitor);

		if (0 != visitor.GetNumVisits())
		{
			os << "Unfreed memory in memory pool " << (void *) this << ": "
			   << visitor.GetNumVisits() << " objects leaked" << std::endl;

			GPOS_ASSERT(!"leak detected");
		}
	}
}

#endif	// GPOS_DEBUG

相关信息

greenplumn 源码目录

相关文章

greenplumn CAutoMemoryPool 源码

greenplumn CCacheFactory 源码

greenplumn CMemoryPoolManager 源码

greenplumn CMemoryPoolTracker 源码

greenplumn CMemoryVisitorPrint 源码

0  赞