-
Notifications
You must be signed in to change notification settings - Fork 5k
Expand file tree
/
Copy pathmemory.cxx
More file actions
87 lines (67 loc) · 1.63 KB
/
memory.cxx
File metadata and controls
87 lines (67 loc) · 1.63 KB
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
/******************************Module*Header*******************************\
* Module Name: bdd.h
*
* Basic Display Driver memory allocation, deletion, and tracking
*
*
* Copyright (c) 2010 Microsoft Corporation
\**************************************************************************/
#include "BDD.hxx"
#pragma code_seg("PAGE")
//
// New and delete operators
//
void* __cdecl operator new(size_t Size, POOL_FLAGS Flags)
{
PAGED_CODE();
Size = (Size != 0) ? Size : 1;
// Note that ExAllocatePool2 replaces ExAllocatePool* APIs in OS's starting
// with Windows 10, version 2004. If your driver targets previous versions it
// should use ExAllocatePoolZero instead.
void* pObject = ExAllocatePool2(Flags, Size, BDDTAG);
#if DBG
if (pObject != NULL)
{
RtlFillMemory(pObject, Size, 0xCD);
}
#endif // DBG
return pObject;
}
void* __cdecl operator new[](size_t Size, POOL_FLAGS Flags)
{
PAGED_CODE();
Size = (Size != 0) ? Size : 1;
void* pObject = ExAllocatePool2(Flags, Size, BDDTAG);
#if DBG
if (pObject != NULL)
{
RtlFillMemory(pObject, Size, 0xCD);
}
#endif // DBG
return pObject;
}
void __cdecl operator delete(void* pObject)
{
PAGED_CODE();
if (pObject != NULL)
{
ExFreePool(pObject);
}
}
//
// size_t version is needed for VS2015(C++ 14).
//
void __cdecl operator delete(void* pObject, size_t s)
{
PAGED_CODE();
UNREFERENCED_PARAMETER( s );
::operator delete( pObject );
}
void __cdecl operator delete[](void* pObject)
{
PAGED_CODE();
if (pObject != NULL)
{
ExFreePool(pObject);
}
}