aboutsummaryrefslogtreecommitdiff
path: root/loader_launcher_proxy/Memory.cpp
blob: 344fa8344b0af3b5532f5ed7bca9819e8010ccc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include "pch.h"
#include "Memory.h"

extern HMODULE hTier0Module;
IMemAlloc** g_ppMemAllocSingleton;

void LoadTier0Handle()
{
	if (!hTier0Module)
		hTier0Module = GetModuleHandleA("tier0.dll");
	if (!hTier0Module)
		return;

	g_ppMemAllocSingleton = (IMemAlloc**)GetProcAddress(hTier0Module, "g_pMemAllocSingleton");
}

const int STATIC_ALLOC_SIZE = 4096;

size_t g_iStaticAllocated = 0;
void* g_pLastAllocated = nullptr;
char pStaticAllocBuf[STATIC_ALLOC_SIZE];

// they should never be used here, except in LibraryLoadError?

void* malloc(size_t n)
{
	// allocate into static buffer
	if (g_iStaticAllocated + n <= STATIC_ALLOC_SIZE)
	{
		void* ret = pStaticAllocBuf + g_iStaticAllocated;
		g_iStaticAllocated += n;
		return ret;
	}
	else
	{
		// try to fallback to g_pMemAllocSingleton
		if (!hTier0Module || !g_ppMemAllocSingleton)
			LoadTier0Handle();
		if (g_ppMemAllocSingleton && *g_ppMemAllocSingleton)
			return (*g_ppMemAllocSingleton)->m_vtable->Alloc(*g_ppMemAllocSingleton, n);
		else
			throw "Cannot allocate";
	}
}

void free(void* p)
{
	// if it was allocated into the static buffer, just do nothing, safest way to deal with it
	if (p >= pStaticAllocBuf && p <= pStaticAllocBuf + STATIC_ALLOC_SIZE)
		return;

	if (g_ppMemAllocSingleton && *g_ppMemAllocSingleton)
		(*g_ppMemAllocSingleton)->m_vtable->Free(*g_ppMemAllocSingleton, p);
}

void* realloc(void* old_ptr, size_t size)
{
	// it was allocated into the static buffer
	if (old_ptr >= pStaticAllocBuf && old_ptr <= pStaticAllocBuf + STATIC_ALLOC_SIZE)
	{
		if (g_pLastAllocated == old_ptr)
		{
			// nothing was allocated after this
			size_t old_size = g_iStaticAllocated - ((size_t)g_pLastAllocated - (size_t)pStaticAllocBuf);
			size_t diff = size - old_size;
			if (diff > 0)
				g_iStaticAllocated += diff;
			return old_ptr;
		}
		else
		{
			return malloc(size);
		}
	}

	if (g_ppMemAllocSingleton && *g_ppMemAllocSingleton)
		return (*g_ppMemAllocSingleton)->m_vtable->Realloc(*g_ppMemAllocSingleton, old_ptr, size);
	return nullptr;
}

void* operator new(size_t n)
{
	return malloc(n);
}

void operator delete(void* p) noexcept
{
	return free(p);
}