Chromium Code Reviews

Side by Side Diff: test/unittests/compiler-dispatcher/compiler-dispatcher-job-unittest.cc

Issue 2198043002: Add a mode to completely deserialize scope chains (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 // Copyright 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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 <memory> 5 #include <memory>
6 6
7 #include "src/ast/scopes.h"
7 #include "src/compiler-dispatcher/compiler-dispatcher-job.h" 8 #include "src/compiler-dispatcher/compiler-dispatcher-job.h"
9 #include "src/compiler.h"
8 #include "src/flags.h" 10 #include "src/flags.h"
9 #include "src/isolate-inl.h" 11 #include "src/isolate-inl.h"
12 #include "src/parsing/parser.h"
10 #include "test/unittests/test-utils.h" 13 #include "test/unittests/test-utils.h"
11 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
12 15
13 namespace v8 { 16 namespace v8 {
14 namespace internal { 17 namespace internal {
15 18
16 typedef TestWithContext CompilerDispatcherJobTest; 19 typedef TestWithContext CompilerDispatcherJobTest;
17 20
18 namespace { 21 namespace {
19 22
23 const char test_script[] = "x*x";
24
20 class ScriptResource : public v8::String::ExternalOneByteStringResource { 25 class ScriptResource : public v8::String::ExternalOneByteStringResource {
21 public: 26 public:
22 ScriptResource(const char* data, size_t length) 27 ScriptResource(const char* data, size_t length)
23 : data_(data), length_(length) {} 28 : data_(data), length_(length) {}
24 ~ScriptResource() override = default; 29 ~ScriptResource() override = default;
25 30
26 const char* data() const override { return data_; } 31 const char* data() const override { return data_; }
27 size_t length() const override { return length_; } 32 size_t length() const override { return length_; }
28 33
29 private: 34 private:
30 const char* data_; 35 const char* data_;
31 size_t length_; 36 size_t length_;
32 37
33 DISALLOW_COPY_AND_ASSIGN(ScriptResource); 38 DISALLOW_COPY_AND_ASSIGN(ScriptResource);
34 }; 39 };
35 40
36 Handle<JSFunction> CreateFunction( 41 Handle<JSFunction> CreateFunction(
37 Isolate* isolate, ExternalOneByteString::Resource* maybe_resource) { 42 Isolate* isolate, ExternalOneByteString::Resource* maybe_resource) {
38 HandleScope scope(isolate); 43 HandleScope scope(isolate);
39 Handle<String> source; 44 Handle<String> source;
40 if (maybe_resource) { 45 if (maybe_resource) {
41 source = isolate->factory() 46 source = isolate->factory()
42 ->NewExternalStringFromOneByte(maybe_resource) 47 ->NewExternalStringFromOneByte(maybe_resource)
43 .ToHandleChecked(); 48 .ToHandleChecked();
44 } else { 49 } else {
45 source = isolate->factory()->NewStringFromStaticChars("source"); 50 source = isolate->factory()->NewStringFromAsciiChecked(test_script);
46 } 51 }
47 Handle<Script> script = isolate->factory()->NewScript(source); 52 Handle<Script> script = isolate->factory()->NewScript(source);
48 Handle<SharedFunctionInfo> shared = isolate->factory()->NewSharedFunctionInfo( 53 Handle<SharedFunctionInfo> shared = isolate->factory()->NewSharedFunctionInfo(
49 isolate->factory()->NewStringFromStaticChars("f"), MaybeHandle<Code>(), 54 isolate->factory()->NewStringFromAsciiChecked("f"), MaybeHandle<Code>(),
50 false); 55 false);
51 SharedFunctionInfo::SetScript(shared, script); 56 SharedFunctionInfo::SetScript(shared, script);
52 shared->set_end_position(source->length() - 1); 57 shared->set_end_position(source->length());
53 Handle<JSFunction> function = 58 Handle<JSFunction> function =
54 isolate->factory()->NewFunctionFromSharedFunctionInfo( 59 isolate->factory()->NewFunctionFromSharedFunctionInfo(
55 shared, handle(isolate->context(), isolate)); 60 shared, handle(isolate->context(), isolate));
56 return scope.CloseAndEscape(function); 61 return scope.CloseAndEscape(function);
57 } 62 }
58 63
64 // A CatchContext is the easiest way to get a context with a variable in a
65 // slot.
66 Handle<Context> GetContextWithVariable(Isolate* isolate, const char* var) {
67 HandleScope handle_scope(isolate);
68 Handle<JSFunction> closure(isolate->native_context()->closure());
69 Handle<Context> context = isolate->factory()->NewCatchContext(
70 closure, handle(isolate->context()),
71 isolate->factory()->NewStringFromAsciiChecked(var),
72 isolate->factory()->undefined_value());
73 return handle_scope.CloseAndEscape(context);
74 }
75
59 } // namespace 76 } // namespace
60 77
61 TEST_F(CompilerDispatcherJobTest, Construct) { 78 TEST_F(CompilerDispatcherJobTest, Construct) {
62 std::unique_ptr<CompilerDispatcherJob> job(new CompilerDispatcherJob( 79 std::unique_ptr<CompilerDispatcherJob> job(new CompilerDispatcherJob(
63 i_isolate(), CreateFunction(i_isolate(), nullptr), FLAG_stack_size)); 80 i_isolate(), CreateFunction(i_isolate(), nullptr), FLAG_stack_size));
64 } 81 }
65 82
66 TEST_F(CompilerDispatcherJobTest, CanParseOnBackgroundThread) { 83 TEST_F(CompilerDispatcherJobTest, CanParseOnBackgroundThread) {
67 { 84 {
68 std::unique_ptr<CompilerDispatcherJob> job(new CompilerDispatcherJob( 85 std::unique_ptr<CompilerDispatcherJob> job(new CompilerDispatcherJob(
69 i_isolate(), CreateFunction(i_isolate(), nullptr), FLAG_stack_size)); 86 i_isolate(), CreateFunction(i_isolate(), nullptr), FLAG_stack_size));
70 ASSERT_FALSE(job->can_parse_on_background_thread()); 87 ASSERT_FALSE(job->can_parse_on_background_thread());
71 } 88 }
72 { 89 {
73 ScriptResource script("script", strlen("script")); 90 ScriptResource script(test_script, strlen(test_script));
74 std::unique_ptr<CompilerDispatcherJob> job(new CompilerDispatcherJob( 91 std::unique_ptr<CompilerDispatcherJob> job(new CompilerDispatcherJob(
75 i_isolate(), CreateFunction(i_isolate(), &script), FLAG_stack_size)); 92 i_isolate(), CreateFunction(i_isolate(), &script), FLAG_stack_size));
76 ASSERT_TRUE(job->can_parse_on_background_thread()); 93 ASSERT_TRUE(job->can_parse_on_background_thread());
77 } 94 }
78 } 95 }
79 96
80 TEST_F(CompilerDispatcherJobTest, StateTransitions) { 97 TEST_F(CompilerDispatcherJobTest, StateTransitions) {
81 std::unique_ptr<CompilerDispatcherJob> job(new CompilerDispatcherJob( 98 std::unique_ptr<CompilerDispatcherJob> job(new CompilerDispatcherJob(
82 i_isolate(), CreateFunction(i_isolate(), nullptr), FLAG_stack_size)); 99 i_isolate(), CreateFunction(i_isolate(), nullptr), FLAG_stack_size));
83 100
(...skipping 17 matching lines...)
101 job->Parse(); 118 job->Parse();
102 job->FinalizeParsingOnMainThread(); 119 job->FinalizeParsingOnMainThread();
103 120
104 ASSERT_TRUE(job->status() == CompileJobStatus::kFailed); 121 ASSERT_TRUE(job->status() == CompileJobStatus::kFailed);
105 ASSERT_FALSE(i_isolate()->has_pending_exception()); 122 ASSERT_FALSE(i_isolate()->has_pending_exception());
106 job->ReportErrorsOnMainThread(); 123 job->ReportErrorsOnMainThread();
107 ASSERT_TRUE(job->status() == CompileJobStatus::kDone); 124 ASSERT_TRUE(job->status() == CompileJobStatus::kDone);
108 ASSERT_TRUE(i_isolate()->has_pending_exception()); 125 ASSERT_TRUE(i_isolate()->has_pending_exception());
109 } 126 }
110 127
128 TEST_F(CompilerDispatcherJobTest, ScopeChain) {
129 Handle<Context> outer_scope = GetContextWithVariable(i_isolate(), "g");
130 const char source[] = "g = 1;";
131 ScriptResource script(source, strlen(source));
132 Handle<JSFunction> fun = CreateFunction(i_isolate(), &script);
133 fun->set_context(*outer_scope);
134
135 std::unique_ptr<CompilerDispatcherJob> job(
136 new CompilerDispatcherJob(i_isolate(), fun, FLAG_stack_size));
137 job->PrepareToParseOnMainThread();
138 job->Parse();
139 job->FinalizeParsingOnMainThread();
140 ASSERT_TRUE(job->status() == CompileJobStatus::kReadyToCompile);
141
142 Scope* scope = job->parse_info_->literal()->scope();
143 Scope* inner_scope = scope->inner_scope();
144 const AstRawString* var_name =
145 job->parse_info_->ast_value_factory()->GetOneByteString("g");
146 Variable* var = inner_scope->Lookup(var_name);
147 ASSERT_TRUE(var);
148 // If the parser didn't use our outer_scope, "g" would be a global variable.
149 ASSERT_TRUE(var->IsContextSlot());
150
151 job->ResetOnMainThread();
152 }
153
111 } // namespace internal 154 } // namespace internal
112 } // namespace v8 155 } // namespace v8
OLDNEW

Powered by Google App Engine