Line data Source code
1 : // Copyright 2015 the V8 project authors. All rights reserved.
2 : // Use of this source code is governed by a BSD-style license that can be
3 : // found in the LICENSE file.
4 :
5 : #include "src/pending-compilation-error-handler.h"
6 :
7 : #include "src/ast/ast-value-factory.h"
8 : #include "src/debug/debug.h"
9 : #include "src/handles.h"
10 : #include "src/isolate.h"
11 : #include "src/messages.h"
12 : #include "src/objects-inl.h"
13 :
14 : namespace v8 {
15 : namespace internal {
16 :
17 369830 : Handle<String> PendingCompilationErrorHandler::MessageDetails::ArgumentString(
18 : Isolate* isolate) const {
19 369830 : if (arg_ != nullptr) return arg_->string();
20 292953 : if (char_arg_ != nullptr) {
21 : return isolate->factory()
22 : ->NewStringFromUtf8(CStrVector(char_arg_))
23 213466 : .ToHandleChecked();
24 : }
25 : return isolate->factory()->undefined_string();
26 : }
27 :
28 0 : MessageLocation PendingCompilationErrorHandler::MessageDetails::GetLocation(
29 : Handle<Script> script) const {
30 367328 : return MessageLocation(script, start_position_, end_position_);
31 : }
32 :
33 2079624 : void PendingCompilationErrorHandler::ReportMessageAt(
34 : int start_position, int end_position, MessageTemplate message,
35 : const char* arg, ParseErrorType error_type) {
36 4159248 : if (has_pending_error_) return;
37 409605 : has_pending_error_ = true;
38 :
39 : error_details_ =
40 409605 : MessageDetails(start_position, end_position, message, nullptr, arg);
41 409605 : error_type_ = error_type;
42 : }
43 :
44 78365 : void PendingCompilationErrorHandler::ReportMessageAt(
45 : int start_position, int end_position, MessageTemplate message,
46 : const AstRawString* arg, ParseErrorType error_type) {
47 156730 : if (has_pending_error_) return;
48 77208 : has_pending_error_ = true;
49 :
50 : error_details_ =
51 77208 : MessageDetails(start_position, end_position, message, arg, nullptr);
52 77208 : error_type_ = error_type;
53 : }
54 :
55 1525 : void PendingCompilationErrorHandler::ReportWarningAt(int start_position,
56 : int end_position,
57 : MessageTemplate message,
58 : const char* arg) {
59 : warning_messages_.emplace_front(
60 1527 : MessageDetails(start_position, end_position, message, nullptr, arg));
61 1527 : }
62 :
63 554 : void PendingCompilationErrorHandler::ReportWarnings(Isolate* isolate,
64 : Handle<Script> script) {
65 : DCHECK(!has_pending_error());
66 :
67 2216 : for (const MessageDetails& warning : warning_messages_) {
68 : MessageLocation location = warning.GetLocation(script);
69 554 : Handle<String> argument = warning.ArgumentString(isolate);
70 : Handle<JSMessageObject> message =
71 : MessageHandler::MakeMessageObject(isolate, warning.message(), &location,
72 554 : argument, Handle<FixedArray>::null());
73 : message->set_error_level(v8::Isolate::kMessageWarning);
74 554 : MessageHandler::ReportMessage(isolate, &location, message);
75 : }
76 554 : }
77 :
78 373341 : void PendingCompilationErrorHandler::ReportErrors(
79 : Isolate* isolate, Handle<Script> script,
80 373341 : AstValueFactory* ast_value_factory) {
81 373341 : if (stack_overflow()) {
82 6567 : isolate->StackOverflow();
83 : } else {
84 : DCHECK(has_pending_error());
85 : // Internalize ast values for throwing the pending error.
86 366774 : ast_value_factory->Internalize(isolate);
87 366774 : ThrowPendingError(isolate, script);
88 : }
89 373341 : }
90 :
91 733548 : void PendingCompilationErrorHandler::ThrowPendingError(Isolate* isolate,
92 : Handle<Script> script) {
93 366804 : if (!has_pending_error_) return;
94 :
95 366774 : MessageLocation location = error_details_.GetLocation(script);
96 366774 : Handle<String> argument = error_details_.ArgumentString(isolate);
97 366774 : isolate->debug()->OnCompileError(script);
98 :
99 : Factory* factory = isolate->factory();
100 : Handle<Object> error;
101 366774 : switch (error_type_) {
102 : case kReferenceError:
103 4956 : error = factory->NewReferenceError(error_details_.message(), argument);
104 4956 : break;
105 : case kSyntaxError:
106 361818 : error = factory->NewSyntaxError(error_details_.message(), argument);
107 361818 : break;
108 : default:
109 0 : UNREACHABLE();
110 : break;
111 : }
112 :
113 733548 : if (!error->IsJSObject()) {
114 30 : isolate->Throw(*error, &location);
115 30 : return;
116 : }
117 :
118 366744 : Handle<JSObject> jserror = Handle<JSObject>::cast(error);
119 :
120 : Handle<Name> key_start_pos = factory->error_start_pos_symbol();
121 : Object::SetProperty(isolate, jserror, key_start_pos,
122 : handle(Smi::FromInt(location.start_pos()), isolate),
123 733488 : LanguageMode::kSloppy)
124 733488 : .Check();
125 :
126 : Handle<Name> key_end_pos = factory->error_end_pos_symbol();
127 : Object::SetProperty(isolate, jserror, key_end_pos,
128 : handle(Smi::FromInt(location.end_pos()), isolate),
129 733488 : LanguageMode::kSloppy)
130 733488 : .Check();
131 :
132 : Handle<Name> key_script = factory->error_script_symbol();
133 : Object::SetProperty(isolate, jserror, key_script, script,
134 366744 : LanguageMode::kSloppy)
135 733488 : .Check();
136 :
137 366744 : isolate->Throw(*error, &location);
138 : }
139 :
140 2502 : Handle<String> PendingCompilationErrorHandler::FormatErrorMessageForTest(
141 : Isolate* isolate) const {
142 : return MessageFormatter::FormatMessage(
143 : isolate, error_details_.message(),
144 5004 : error_details_.ArgumentString(isolate));
145 : }
146 :
147 : } // namespace internal
148 183867 : } // namespace v8
|