OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/runtime/runtime-utils.h" | 5 #include "src/runtime/runtime-utils.h" |
6 | 6 |
7 #include "src/arguments.h" | 7 #include "src/arguments.h" |
8 #include "src/ast/prettyprinter.h" | 8 #include "src/ast/prettyprinter.h" |
9 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
10 #include "src/conversions.h" | 10 #include "src/conversions.h" |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 return isolate->ReThrow(args[0]); | 89 return isolate->ReThrow(args[0]); |
90 } | 90 } |
91 | 91 |
92 | 92 |
93 RUNTIME_FUNCTION(Runtime_ThrowStackOverflow) { | 93 RUNTIME_FUNCTION(Runtime_ThrowStackOverflow) { |
94 SealHandleScope shs(isolate); | 94 SealHandleScope shs(isolate); |
95 DCHECK_LE(0, args.length()); | 95 DCHECK_LE(0, args.length()); |
96 return isolate->StackOverflow(); | 96 return isolate->StackOverflow(); |
97 } | 97 } |
98 | 98 |
| 99 RUNTIME_FUNCTION(Runtime_ThrowWasmError) { |
| 100 HandleScope scope(isolate); |
| 101 DCHECK_EQ(1, args.length()); |
| 102 CONVERT_SMI_ARG_CHECKED(message_id, 0); |
| 103 THROW_NEW_ERROR_RETURN_FAILURE( |
| 104 isolate, NewError(static_cast<MessageTemplate::Template>(message_id))); |
| 105 } |
99 | 106 |
100 RUNTIME_FUNCTION(Runtime_UnwindAndFindExceptionHandler) { | 107 RUNTIME_FUNCTION(Runtime_UnwindAndFindExceptionHandler) { |
101 SealHandleScope shs(isolate); | 108 SealHandleScope shs(isolate); |
102 DCHECK(args.length() == 0); | 109 DCHECK(args.length() == 0); |
103 return isolate->UnwindAndFindHandler(); | 110 return isolate->UnwindAndFindHandler(); |
104 } | 111 } |
105 | 112 |
106 | 113 |
107 RUNTIME_FUNCTION(Runtime_PromoteScheduledException) { | 114 RUNTIME_FUNCTION(Runtime_PromoteScheduledException) { |
108 SealHandleScope shs(isolate); | 115 SealHandleScope shs(isolate); |
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 std::stringstream stats_stream; | 498 std::stringstream stats_stream; |
492 isolate->counters()->runtime_call_stats()->Print(stats_stream); | 499 isolate->counters()->runtime_call_stats()->Print(stats_stream); |
493 Handle<String> result = | 500 Handle<String> result = |
494 isolate->factory()->NewStringFromAsciiChecked(stats_stream.str().c_str()); | 501 isolate->factory()->NewStringFromAsciiChecked(stats_stream.str().c_str()); |
495 isolate->counters()->runtime_call_stats()->Reset(); | 502 isolate->counters()->runtime_call_stats()->Reset(); |
496 return *result; | 503 return *result; |
497 } | 504 } |
498 | 505 |
499 } // namespace internal | 506 } // namespace internal |
500 } // namespace v8 | 507 } // namespace v8 |
OLD | NEW |