OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/process/memory.h" | 5 #include "base/process/memory.h" |
6 | 6 |
7 #include <new> | 7 #include <new> |
8 | 8 |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/process/internal_linux.h" | 12 #include "base/process/internal_linux.h" |
13 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
14 | 14 |
| 15 #if defined(USE_TCMALLOC) |
| 16 // Used by UncheckedMalloc. If tcmalloc is linked to the executable |
| 17 // this will be replaced by a strong symbol that actually implement |
| 18 // the semantics and don't call new handler in case the allocation fails. |
| 19 extern "C" { |
| 20 |
| 21 __attribute__((weak, visibility("default"))) |
| 22 void* tc_malloc_skip_new_handler_weak(size_t size); |
| 23 |
| 24 void* tc_malloc_skip_new_handler_weak(size_t size) { |
| 25 return malloc(size); |
| 26 } |
| 27 |
| 28 } |
| 29 #endif |
| 30 |
15 namespace base { | 31 namespace base { |
16 | 32 |
17 size_t g_oom_size = 0U; | 33 size_t g_oom_size = 0U; |
18 | 34 |
19 namespace { | 35 namespace { |
20 | 36 |
21 #if !defined(OS_ANDROID) | 37 #if !defined(OS_ANDROID) |
22 void OnNoMemorySize(size_t size) { | 38 void OnNoMemorySize(size_t size) { |
23 g_oom_size = size; | 39 g_oom_size = size; |
24 | 40 |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 DVLOG(1) << "Adjusting oom_adj of " << process << " to " << score_str; | 195 DVLOG(1) << "Adjusting oom_adj of " << process << " to " << score_str; |
180 int score_len = static_cast<int>(score_str.length()); | 196 int score_len = static_cast<int>(score_str.length()); |
181 return (score_len == file_util::WriteFile(oom_file, | 197 return (score_len == file_util::WriteFile(oom_file, |
182 score_str.c_str(), | 198 score_str.c_str(), |
183 score_len)); | 199 score_len)); |
184 } | 200 } |
185 | 201 |
186 return false; | 202 return false; |
187 } | 203 } |
188 | 204 |
| 205 bool UncheckedMalloc(size_t size, void** result) { |
| 206 #if defined(ADDRESS_SANITIZER) || defined(MEMORY_SANITIZER) || \ |
| 207 defined(THREAD_SANITIZER) || defined(LEAK_SANITIZER) || \ |
| 208 (!defined(LIBC_GLIBC) && !defined(USE_TCMALLOC)) |
| 209 *result = malloc(size); |
| 210 #elif defined(LIBC_GLIBC) && !defined(USE_TCMALLOC) |
| 211 *result = __libc_malloc(size); |
| 212 #elif defined(USE_TCMALLOC) |
| 213 *result = tc_malloc_skip_new_handler_weak(size); |
| 214 #endif |
| 215 return *result != NULL; |
| 216 } |
| 217 |
189 } // namespace base | 218 } // namespace base |
OLD | NEW |