| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #include <stdarg.h> | 28 #include <stdarg.h> |
| 29 | 29 |
| 30 #include "v8.h" | 30 #include "v8.h" |
| 31 | 31 |
| 32 #include "platform.h" | 32 #include "platform.h" |
| 33 #include "top.h" | 33 #include "top.h" |
| 34 | 34 |
| 35 using namespace v8::internal; | 35 using namespace v8::internal; |
| 36 | 36 |
| 37 DEFINE_bool(stack_trace_on_abort, true, | |
| 38 "print a stack trace if an assertion failure occurs"); | |
| 39 | |
| 40 #ifdef DEBUG | |
| 41 DEFINE_bool(enable_slow_asserts, false, | |
| 42 "enable asserts that are slow to execute"); | |
| 43 #endif | |
| 44 | |
| 45 static int fatal_error_handler_nesting_depth = 0; | 37 static int fatal_error_handler_nesting_depth = 0; |
| 46 | 38 |
| 47 // Contains protection against recursive calls (faults while handling faults). | 39 // Contains protection against recursive calls (faults while handling faults). |
| 48 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) { | 40 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) { |
| 49 fatal_error_handler_nesting_depth++; | 41 fatal_error_handler_nesting_depth++; |
| 50 // First time we try to print an error message | 42 // First time we try to print an error message |
| 51 if (fatal_error_handler_nesting_depth < 2) { | 43 if (fatal_error_handler_nesting_depth < 2) { |
| 52 OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file, line); | 44 OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file, line); |
| 53 va_list arguments; | 45 va_list arguments; |
| 54 va_start(arguments, format); | 46 va_start(arguments, format); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 91 |
| 100 void API_Fatal(const char* location, const char* format, ...) { | 92 void API_Fatal(const char* location, const char* format, ...) { |
| 101 OS::PrintError("\n#\n# Fatal error in %s\n# ", location); | 93 OS::PrintError("\n#\n# Fatal error in %s\n# ", location); |
| 102 va_list arguments; | 94 va_list arguments; |
| 103 va_start(arguments, format); | 95 va_start(arguments, format); |
| 104 OS::VPrintError(format, arguments); | 96 OS::VPrintError(format, arguments); |
| 105 va_end(arguments); | 97 va_end(arguments); |
| 106 OS::PrintError("\n#\n\n"); | 98 OS::PrintError("\n#\n\n"); |
| 107 OS::Abort(); | 99 OS::Abort(); |
| 108 } | 100 } |
| OLD | NEW |