OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/allocation-site-scopes.h" | 8 #include "src/allocation-site-scopes.h" |
9 #include "src/api.h" | 9 #include "src/api.h" |
10 #include "src/arguments.h" | 10 #include "src/arguments.h" |
(...skipping 1730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1741 | 1741 |
1742 | 1742 |
1743 void HeapNumber::HeapNumberPrint(StringStream* accumulator) { | 1743 void HeapNumber::HeapNumberPrint(StringStream* accumulator) { |
1744 // The Windows version of vsnprintf can allocate when printing a %g string | 1744 // The Windows version of vsnprintf can allocate when printing a %g string |
1745 // into a buffer that may not be big enough. We don't want random memory | 1745 // into a buffer that may not be big enough. We don't want random memory |
1746 // allocation when producing post-crash stack traces, so we print into a | 1746 // allocation when producing post-crash stack traces, so we print into a |
1747 // buffer that is plenty big enough for any floating point number, then | 1747 // buffer that is plenty big enough for any floating point number, then |
1748 // print that using vsnprintf (which may truncate but never allocate if | 1748 // print that using vsnprintf (which may truncate but never allocate if |
1749 // there is no more space in the buffer). | 1749 // there is no more space in the buffer). |
1750 EmbeddedVector<char, 100> buffer; | 1750 EmbeddedVector<char, 100> buffer; |
1751 OS::SNPrintF(buffer, "%.16g", Number()); | 1751 SNPrintF(buffer, "%.16g", Number()); |
1752 accumulator->Add("%s", buffer.start()); | 1752 accumulator->Add("%s", buffer.start()); |
1753 } | 1753 } |
1754 | 1754 |
1755 | 1755 |
1756 String* JSReceiver::class_name() { | 1756 String* JSReceiver::class_name() { |
1757 if (IsJSFunction() && IsJSFunctionProxy()) { | 1757 if (IsJSFunction() && IsJSFunctionProxy()) { |
1758 return GetHeap()->function_class_string(); | 1758 return GetHeap()->function_class_string(); |
1759 } | 1759 } |
1760 if (map()->constructor()->IsJSFunction()) { | 1760 if (map()->constructor()->IsJSFunction()) { |
1761 JSFunction* constructor = JSFunction::cast(map()->constructor()); | 1761 JSFunction* constructor = JSFunction::cast(map()->constructor()); |
(...skipping 15276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
17038 #define ERROR_MESSAGES_TEXTS(C, T) T, | 17038 #define ERROR_MESSAGES_TEXTS(C, T) T, |
17039 static const char* error_messages_[] = { | 17039 static const char* error_messages_[] = { |
17040 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) | 17040 ERROR_MESSAGES_LIST(ERROR_MESSAGES_TEXTS) |
17041 }; | 17041 }; |
17042 #undef ERROR_MESSAGES_TEXTS | 17042 #undef ERROR_MESSAGES_TEXTS |
17043 return error_messages_[reason]; | 17043 return error_messages_[reason]; |
17044 } | 17044 } |
17045 | 17045 |
17046 | 17046 |
17047 } } // namespace v8::internal | 17047 } } // namespace v8::internal |
OLD | NEW |