Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/background-parsing-task.cc

Issue 2392303004: [parser] Remove obsolete ParseInfo::is_global flag. (Closed)
Patch Set: Also renumber flags. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/background-parsing-task.h" 5 #include "src/background-parsing-task.h"
6 6
7 #include "src/debug/debug.h" 7 #include "src/debug/debug.h"
8 #include "src/parsing/parser.h" 8 #include "src/parsing/parser.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 19 matching lines...) Expand all
30 // Prepare the data for the internalization phase and compilation phase, which 30 // Prepare the data for the internalization phase and compilation phase, which
31 // will happen in the main thread after parsing. 31 // will happen in the main thread after parsing.
32 Zone* zone = new Zone(isolate->allocator()); 32 Zone* zone = new Zone(isolate->allocator());
33 ParseInfo* info = new ParseInfo(zone); 33 ParseInfo* info = new ParseInfo(zone);
34 source->zone.reset(zone); 34 source->zone.reset(zone);
35 source->info.reset(info); 35 source->info.reset(info);
36 info->set_isolate(isolate); 36 info->set_isolate(isolate);
37 info->set_source_stream(source->source_stream.get()); 37 info->set_source_stream(source->source_stream.get());
38 info->set_source_stream_encoding(source->encoding); 38 info->set_source_stream_encoding(source->encoding);
39 info->set_hash_seed(isolate->heap()->HashSeed()); 39 info->set_hash_seed(isolate->heap()->HashSeed());
40 info->set_global();
41 info->set_unicode_cache(&source_->unicode_cache); 40 info->set_unicode_cache(&source_->unicode_cache);
42 info->set_compile_options(options); 41 info->set_compile_options(options);
43 // Parse eagerly with ignition since we will compile eagerly. 42 // Parse eagerly with ignition since we will compile eagerly.
44 info->set_allow_lazy_parsing(!(i::FLAG_ignition && i::FLAG_ignition_eager)); 43 info->set_allow_lazy_parsing(!(i::FLAG_ignition && i::FLAG_ignition_eager));
45 44
46 if (options == ScriptCompiler::kProduceParserCache || 45 if (options == ScriptCompiler::kProduceParserCache ||
47 options == ScriptCompiler::kProduceCodeCache) { 46 options == ScriptCompiler::kProduceCodeCache) {
48 source_->info->set_cached_data(&script_data_); 47 source_->info->set_cached_data(&script_data_);
49 } 48 }
50 // Parser needs to stay alive for finalizing the parsing on the main 49 // Parser needs to stay alive for finalizing the parsing on the main
(...skipping 26 matching lines...) Expand all
77 script_data_->data(), script_data_->length(), 76 script_data_->data(), script_data_->length(),
78 ScriptCompiler::CachedData::BufferOwned)); 77 ScriptCompiler::CachedData::BufferOwned));
79 script_data_->ReleaseDataOwnership(); 78 script_data_->ReleaseDataOwnership();
80 delete script_data_; 79 delete script_data_;
81 script_data_ = nullptr; 80 script_data_ = nullptr;
82 } 81 }
83 source_->info->set_isolate(isolate); 82 source_->info->set_isolate(isolate);
84 } 83 }
85 } // namespace internal 84 } // namespace internal
86 } // namespace v8 85 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698