OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project 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 "src/api.h" | 5 #include "src/api.h" |
6 | 6 |
7 #include <string.h> // For memcpy, strlen. | 7 #include <string.h> // For memcpy, strlen. |
8 #ifdef V8_USE_ADDRESS_SANITIZER | 8 #ifdef V8_USE_ADDRESS_SANITIZER |
9 #include <sanitizer/asan_interface.h> | 9 #include <sanitizer/asan_interface.h> |
10 #endif // V8_USE_ADDRESS_SANITIZER | 10 #endif // V8_USE_ADDRESS_SANITIZER |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
234 // --- E x c e p t i o n B e h a v i o r --- | 234 // --- E x c e p t i o n B e h a v i o r --- |
235 | 235 |
236 | 236 |
237 void i::FatalProcessOutOfMemory(const char* location) { | 237 void i::FatalProcessOutOfMemory(const char* location) { |
238 i::V8::FatalProcessOutOfMemory(location, false); | 238 i::V8::FatalProcessOutOfMemory(location, false); |
239 } | 239 } |
240 | 240 |
241 | 241 |
242 // When V8 cannot allocated memory FatalProcessOutOfMemory is called. | 242 // When V8 cannot allocated memory FatalProcessOutOfMemory is called. |
243 // The default fatal error handler is called and execution is stopped. | 243 // The default fatal error handler is called and execution is stopped. |
244 void i::V8::FatalProcessOutOfMemory(const char* location, bool take_snapshot) { | 244 void i::V8::FatalProcessOutOfMemory(const char* location, bool is_heap_oom) { |
245 i::Isolate* isolate = i::Isolate::Current(); | 245 i::Isolate* isolate = i::Isolate::Current(); |
246 char last_few_messages[Heap::kTraceRingBufferSize + 1]; | 246 char last_few_messages[Heap::kTraceRingBufferSize + 1]; |
247 char js_stacktrace[Heap::kStacktraceBufferSize + 1]; | 247 char js_stacktrace[Heap::kStacktraceBufferSize + 1]; |
248 memset(last_few_messages, 0, Heap::kTraceRingBufferSize + 1); | 248 memset(last_few_messages, 0, Heap::kTraceRingBufferSize + 1); |
249 memset(js_stacktrace, 0, Heap::kStacktraceBufferSize + 1); | 249 memset(js_stacktrace, 0, Heap::kStacktraceBufferSize + 1); |
250 | 250 |
251 i::HeapStats heap_stats; | 251 i::HeapStats heap_stats; |
252 int start_marker; | 252 int start_marker; |
253 heap_stats.start_marker = &start_marker; | 253 heap_stats.start_marker = &start_marker; |
254 int new_space_size; | 254 int new_space_size; |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
296 if (isolate->heap()->HasBeenSetUp()) { | 296 if (isolate->heap()->HasBeenSetUp()) { |
297 // BUG(1718): Don't use the take_snapshot since we don't support | 297 // BUG(1718): Don't use the take_snapshot since we don't support |
298 // HeapIterator here without doing a special GC. | 298 // HeapIterator here without doing a special GC. |
299 isolate->heap()->RecordStats(&heap_stats, false); | 299 isolate->heap()->RecordStats(&heap_stats, false); |
300 char* first_newline = strchr(last_few_messages, '\n'); | 300 char* first_newline = strchr(last_few_messages, '\n'); |
301 if (first_newline == NULL || first_newline[1] == '\0') | 301 if (first_newline == NULL || first_newline[1] == '\0') |
302 first_newline = last_few_messages; | 302 first_newline = last_few_messages; |
303 PrintF("\n<--- Last few GCs --->\n%s\n", first_newline); | 303 PrintF("\n<--- Last few GCs --->\n%s\n", first_newline); |
304 PrintF("\n<--- JS stacktrace --->\n%s\n", js_stacktrace); | 304 PrintF("\n<--- JS stacktrace --->\n%s\n", js_stacktrace); |
305 } | 305 } |
306 Utils::ApiCheck(false, location, "Allocation failed - process out of memory"); | 306 if (is_heap_oom) { |
307 Utils::ApiCheck(false, location, | |
Hannes Payer (out of office)
2016/04/07 17:09:24
Please change to:
Utils::ApiCheck(false, location,
| |
308 "Allocation failed - JavaScript heap out of memory"); | |
309 } else { | |
310 Utils::ApiCheck(false, location, | |
311 "Allocation failed - process out of memory"); | |
312 } | |
307 // If the fatal error handler returns, we stop execution. | 313 // If the fatal error handler returns, we stop execution. |
308 FATAL("API fatal error handler returned after process out of memory"); | 314 FATAL("API fatal error handler returned after process out of memory"); |
309 } | 315 } |
310 | 316 |
311 | 317 |
312 void Utils::ReportApiFailure(const char* location, const char* message) { | 318 void Utils::ReportApiFailure(const char* location, const char* message) { |
313 i::Isolate* isolate = i::Isolate::Current(); | 319 i::Isolate* isolate = i::Isolate::Current(); |
314 FatalErrorCallback callback = isolate->exception_behavior(); | 320 FatalErrorCallback callback = isolate->exception_behavior(); |
315 if (callback == NULL) { | 321 if (callback == NULL) { |
316 base::OS::PrintError("\n#\n# Fatal error in %s\n# %s\n#\n\n", location, | 322 base::OS::PrintError("\n#\n# Fatal error in %s\n# %s\n#\n\n", location, |
(...skipping 8465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
8782 Address callback_address = | 8788 Address callback_address = |
8783 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback)); | 8789 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback)); |
8784 VMState<EXTERNAL> state(isolate); | 8790 VMState<EXTERNAL> state(isolate); |
8785 ExternalCallbackScope call_scope(isolate, callback_address); | 8791 ExternalCallbackScope call_scope(isolate, callback_address); |
8786 callback(info); | 8792 callback(info); |
8787 } | 8793 } |
8788 | 8794 |
8789 | 8795 |
8790 } // namespace internal | 8796 } // namespace internal |
8791 } // namespace v8 | 8797 } // namespace v8 |
OLD | NEW |