1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Fixed memory leaks

This commit is contained in:
Brian Fiete 2020-05-14 14:56:25 -07:00
parent 29fbafb91f
commit 2ac6b339b2
4 changed files with 51 additions and 15 deletions

View file

@ -74,6 +74,8 @@ BfGenericExtensionEntry* BfModule::BuildGenericExtensionInfo(BfGenericTypeInstan
{
auto genericParamInstance = new BfGenericTypeParamInstance(partialTypeDef, paramIdx);
genericParamInstance->mExternType = GetGenericParamType(BfGenericParamKind_Type, paramIdx);
auto prevPtr = genericExEntry->mGenericParams.mVals;
genericExEntry->mGenericParams.push_back(genericParamInstance);
}
@ -961,7 +963,8 @@ bool BfModule::PopulateType(BfType* resolvedTypeRef, BfPopulateType populateType
}
resolvedTypeRef->mDefineState = BfTypeDefineState_DefinedAndMethodsSlotted;
resolvedTypeRef->mRebuildFlags = BfTypeRebuildFlag_None;
typeAlias->mCustomAttributes = GetCustomAttributes(typeDef->mTypeDeclaration->mAttributes, BfAttributeTargets_Alias);
if ((typeInstance->mCustomAttributes == NULL) && (typeDef->mTypeDeclaration != NULL) && (typeDef->mTypeDeclaration->mAttributes != NULL))
typeInstance->mCustomAttributes = GetCustomAttributes(typeDef->mTypeDeclaration->mAttributes, BfAttributeTargets_Alias);
// Fall through so generic params are populated in DoPopulateType
}

View file

@ -1587,7 +1587,8 @@ BfGenericTypeInstance::~BfGenericTypeInstance()
{
for (auto genericParamInstance : mGenericParams)
genericParamInstance->Release();
delete mGenericExtensionInfo;
if (mGenericExtensionInfo != NULL)
delete mGenericExtensionInfo;
}
BfGenericTypeInstance::GenericParamsVector* BfGenericTypeInstance::GetGenericParamsVector(BfTypeDef* declaringTypeDef)

View file

@ -1749,6 +1749,38 @@ public:
virtual void ReportMemory(MemReporter* memReporter) override;
};
template <typename T>
class LogAlloc
{
public:
T* allocate(intptr count)
{
auto ptr = (T*)malloc(sizeof(T) * count);
OutputDebugStrF("LogAlloc.allocate: %p\n", ptr);
return ptr;
}
void deallocate(T* ptr)
{
OutputDebugStrF("LogAlloc.deallocate: %p\n", ptr);
free(ptr);
}
void* rawAllocate(intptr size)
{
auto ptr = malloc(size);
OutputDebugStrF("LogAlloc.rawAllocate: %p\n", ptr);
return ptr;
}
void rawDeallocate(void* ptr)
{
OutputDebugStrF("LogAlloc.rawFree: %p\n", ptr);
free(ptr);
}
};
class BfBoxedType : public BfTypeInstance
{
public:
@ -1801,7 +1833,7 @@ public:
class BfGenericExtensionEntry
{
public:
Array<BfGenericTypeParamInstance*> mGenericParams;
Array<BfGenericTypeParamInstance*> mGenericParams;
bool mConstraintsPassed;
public: