diff options
| author | 2015-09-12 14:49:07 -0400 | |
|---|---|---|
| committer | 2015-09-12 14:49:07 -0400 | |
| commit | 5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b (patch) | |
| tree | c8e5abda9387898fa9792ce2d53b078f383b60f9 /src/common/memory_util.cpp | |
| parent | Merge pull request #1151 from lioncash/return (diff) | |
| parent | memory_util: Remove unnecessary assignment in FreeMemoryPages (diff) | |
| download | yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.tar.gz yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.tar.xz yuzu-5fdfd782cc7149e03a93cb33e1a701b7ad1aa74b.zip | |
Merge pull request #1152 from lioncash/nullptr
Replace 0 literals with nullptr where applicable
Diffstat (limited to 'src/common/memory_util.cpp')
| -rw-r--r-- | src/common/memory_util.cpp | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/src/common/memory_util.cpp b/src/common/memory_util.cpp index 5ef784224..07c7f79c8 100644 --- a/src/common/memory_util.cpp +++ b/src/common/memory_util.cpp | |||
| @@ -28,9 +28,9 @@ | |||
| 28 | void* AllocateExecutableMemory(size_t size, bool low) | 28 | void* AllocateExecutableMemory(size_t size, bool low) |
| 29 | { | 29 | { |
| 30 | #if defined(_WIN32) | 30 | #if defined(_WIN32) |
| 31 | void* ptr = VirtualAlloc(0, size, MEM_COMMIT, PAGE_EXECUTE_READWRITE); | 31 | void* ptr = VirtualAlloc(nullptr, size, MEM_COMMIT, PAGE_EXECUTE_READWRITE); |
| 32 | #else | 32 | #else |
| 33 | static char *map_hint = 0; | 33 | static char* map_hint = nullptr; |
| 34 | #if defined(ARCHITECTURE_X64) && !defined(MAP_32BIT) | 34 | #if defined(ARCHITECTURE_X64) && !defined(MAP_32BIT) |
| 35 | // This OS has no flag to enforce allocation below the 4 GB boundary, | 35 | // This OS has no flag to enforce allocation below the 4 GB boundary, |
| 36 | // but if we hint that we want a low address it is very likely we will | 36 | // but if we hint that we want a low address it is very likely we will |
| @@ -49,9 +49,6 @@ void* AllocateExecutableMemory(size_t size, bool low) | |||
| 49 | , -1, 0); | 49 | , -1, 0); |
| 50 | #endif /* defined(_WIN32) */ | 50 | #endif /* defined(_WIN32) */ |
| 51 | 51 | ||
| 52 | // printf("Mapped executable memory at %p (size %ld)\n", ptr, | ||
| 53 | // (unsigned long)size); | ||
| 54 | |||
| 55 | #ifdef _WIN32 | 52 | #ifdef _WIN32 |
| 56 | if (ptr == nullptr) | 53 | if (ptr == nullptr) |
| 57 | { | 54 | { |
| @@ -69,7 +66,6 @@ void* AllocateExecutableMemory(size_t size, bool low) | |||
| 69 | { | 66 | { |
| 70 | map_hint += size; | 67 | map_hint += size; |
| 71 | map_hint = (char*)round_page(map_hint); /* round up to the next page */ | 68 | map_hint = (char*)round_page(map_hint); /* round up to the next page */ |
| 72 | // printf("Next map will (hopefully) be at %p\n", map_hint); | ||
| 73 | } | 69 | } |
| 74 | } | 70 | } |
| 75 | #endif | 71 | #endif |
| @@ -85,18 +81,15 @@ void* AllocateExecutableMemory(size_t size, bool low) | |||
| 85 | void* AllocateMemoryPages(size_t size) | 81 | void* AllocateMemoryPages(size_t size) |
| 86 | { | 82 | { |
| 87 | #ifdef _WIN32 | 83 | #ifdef _WIN32 |
| 88 | void* ptr = VirtualAlloc(0, size, MEM_COMMIT, PAGE_READWRITE); | 84 | void* ptr = VirtualAlloc(nullptr, size, MEM_COMMIT, PAGE_READWRITE); |
| 89 | #else | 85 | #else |
| 90 | void* ptr = mmap(0, size, PROT_READ | PROT_WRITE, | 86 | void* ptr = mmap(nullptr, size, PROT_READ | PROT_WRITE, |
| 91 | MAP_ANON | MAP_PRIVATE, -1, 0); | 87 | MAP_ANON | MAP_PRIVATE, -1, 0); |
| 92 | 88 | ||
| 93 | if (ptr == MAP_FAILED) | 89 | if (ptr == MAP_FAILED) |
| 94 | ptr = nullptr; | 90 | ptr = nullptr; |
| 95 | #endif | 91 | #endif |
| 96 | 92 | ||
| 97 | // printf("Mapped memory at %p (size %ld)\n", ptr, | ||
| 98 | // (unsigned long)size); | ||
| 99 | |||
| 100 | if (ptr == nullptr) | 93 | if (ptr == nullptr) |
| 101 | LOG_ERROR(Common_Memory, "Failed to allocate raw memory"); | 94 | LOG_ERROR(Common_Memory, "Failed to allocate raw memory"); |
| 102 | 95 | ||
| @@ -117,9 +110,6 @@ void* AllocateAlignedMemory(size_t size,size_t alignment) | |||
| 117 | #endif | 110 | #endif |
| 118 | #endif | 111 | #endif |
| 119 | 112 | ||
| 120 | // printf("Mapped memory at %p (size %ld)\n", ptr, | ||
| 121 | // (unsigned long)size); | ||
| 122 | |||
| 123 | if (ptr == nullptr) | 113 | if (ptr == nullptr) |
| 124 | LOG_ERROR(Common_Memory, "Failed to allocate aligned memory"); | 114 | LOG_ERROR(Common_Memory, "Failed to allocate aligned memory"); |
| 125 | 115 | ||
| @@ -131,11 +121,8 @@ void FreeMemoryPages(void* ptr, size_t size) | |||
| 131 | if (ptr) | 121 | if (ptr) |
| 132 | { | 122 | { |
| 133 | #ifdef _WIN32 | 123 | #ifdef _WIN32 |
| 134 | |||
| 135 | if (!VirtualFree(ptr, 0, MEM_RELEASE)) | 124 | if (!VirtualFree(ptr, 0, MEM_RELEASE)) |
| 136 | LOG_ERROR(Common_Memory, "FreeMemoryPages failed!\n%s", GetLastErrorMsg()); | 125 | LOG_ERROR(Common_Memory, "FreeMemoryPages failed!\n%s", GetLastErrorMsg()); |
| 137 | ptr = nullptr; // Is this our responsibility? | ||
| 138 | |||
| 139 | #else | 126 | #else |
| 140 | munmap(ptr, size); | 127 | munmap(ptr, size); |
| 141 | #endif | 128 | #endif |