]> git.proxmox.com Git - mirror_edk2.git/blob - EmulatorPkg/Unix/Host/MemoryAllocationLib.c
EmulatorPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / EmulatorPkg / Unix / Host / MemoryAllocationLib.c
1 /*++ @file
2
3 Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #include "Base.h"
10 #include "Library/BaseMemoryLib.h"
11 #include "Library/MemoryAllocationLib.h"
12
13 #include <stdlib.h>
14
15 /**
16 Allocates a buffer of type EfiBootServicesData.
17
18 Allocates the number bytes specified by AllocationSize of type EfiBootServicesData and returns a
19 pointer to the allocated buffer. If AllocationSize is 0, then a valid buffer of 0 size is
20 returned. If there is not enough memory remaining to satisfy the request, then NULL is returned.
21
22 @param AllocationSize The number of bytes to allocate.
23
24 @return A pointer to the allocated buffer or NULL if allocation fails.
25
26 **/
27 VOID *
28 EFIAPI
29 AllocatePool (
30 IN UINTN AllocationSize
31 )
32 {
33 return (VOID*) malloc (AllocationSize);
34 }
35
36
37 /**
38 Allocates and zeros a buffer of type EfiBootServicesData.
39
40 Allocates the number bytes specified by AllocationSize of type EfiBootServicesData, clears the
41 buffer with zeros, and returns a pointer to the allocated buffer. If AllocationSize is 0, then a
42 valid buffer of 0 size is returned. If there is not enough memory remaining to satisfy the
43 request, then NULL is returned.
44
45 @param AllocationSize The number of bytes to allocate and zero.
46
47 @return A pointer to the allocated buffer or NULL if allocation fails.
48
49 **/
50 VOID *
51 EFIAPI
52 AllocateZeroPool (
53 IN UINTN AllocationSize
54 )
55 {
56 VOID *Buffer;
57
58 Buffer = AllocatePool (AllocationSize);
59 if (Buffer == NULL) {
60 return NULL;
61 }
62
63 ZeroMem (Buffer, AllocationSize);
64
65 return Buffer;
66 }
67
68
69 /**
70 Reallocates a buffer of type EfiBootServicesData.
71
72 Allocates and zeros the number bytes specified by NewSize from memory of type
73 EfiBootServicesData. If OldBuffer is not NULL, then the smaller of OldSize and
74 NewSize bytes are copied from OldBuffer to the newly allocated buffer, and
75 OldBuffer is freed. A pointer to the newly allocated buffer is returned.
76 If NewSize is 0, then a valid buffer of 0 size is returned. If there is not
77 enough memory remaining to satisfy the request, then NULL is returned.
78
79 If the allocation of the new buffer is successful and the smaller of NewSize and OldSize
80 is greater than (MAX_ADDRESS - OldBuffer + 1), then ASSERT().
81
82 @param OldSize The size, in bytes, of OldBuffer.
83 @param NewSize The size, in bytes, of the buffer to reallocate.
84 @param OldBuffer The buffer to copy to the allocated buffer. This is an optional
85 parameter that may be NULL.
86
87 @return A pointer to the allocated buffer or NULL if allocation fails.
88
89 **/
90 VOID *
91 EFIAPI
92 ReallocatePool (
93 IN UINTN OldSize,
94 IN UINTN NewSize,
95 IN VOID *OldBuffer OPTIONAL
96 )
97 {
98 VOID *NewBuffer;
99
100 NewBuffer = AllocatePool (NewSize);
101 if (NewBuffer == NULL) {
102 return NULL;
103 }
104
105 if (OldBuffer != NULL) {
106 if (OldSize > 0) {
107 CopyMem (NewBuffer, OldBuffer, OldSize);
108 }
109
110 FreePool (OldBuffer);
111 }
112
113 return NewBuffer;
114 }
115
116
117 /**
118 Frees a buffer that was previously allocated with one of the pool allocation functions in the
119 Memory Allocation Library.
120
121 Frees the buffer specified by Buffer. Buffer must have been allocated on a previous call to the
122 pool allocation services of the Memory Allocation Library. If it is not possible to free pool
123 resources, then this function will perform no actions.
124
125 If Buffer was not allocated with a pool allocation function in the Memory Allocation Library,
126 then ASSERT().
127
128 @param Buffer Pointer to the buffer to free.
129
130 **/
131 VOID
132 EFIAPI
133 FreePool (
134 IN VOID *Buffer
135 )
136 {
137 free ((void *) Buffer);
138 }
139