V8 Project
background-parsing-task.cc
Go to the documentation of this file.
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
3 // found in the LICENSE file.
4 
6 
7 namespace v8 {
8 namespace internal {
9 
12  int stack_size, Isolate* isolate)
13  : source_(source), options_(options), stack_size_(stack_size) {
14  // Prepare the data for the internalization phase and compilation phase, which
15  // will happen in the main thread after parsing.
16  source->info.Reset(new i::CompilationInfoWithZone(source->source_stream.get(),
17  source->encoding, isolate));
18  source->info->MarkAsGlobal();
19 
20  // We don't set the context to the CompilationInfo yet, because the background
21  // thread cannot do anything with it anyway. We set it just before compilation
22  // on the foreground thread.
26  source->allow_lazy =
28  source->hash_seed = isolate->heap()->HashSeed();
29 }
30 
31 
33  DisallowHeapAllocation no_allocation;
34  DisallowHandleAllocation no_handles;
36 
37  ScriptData* script_data = NULL;
40  source_->info->SetCachedData(&script_data, options_);
41  }
42 
43  uintptr_t limit = reinterpret_cast<uintptr_t>(&limit) - stack_size_ * KB;
44  Parser::ParseInfo parse_info = {limit, source_->hash_seed,
46 
47  // Parser needs to stay alive for finalizing the parsing on the main
48  // thread. Passing &parse_info is OK because Parser doesn't store it.
49  source_->parser.Reset(new Parser(source_->info.get(), &parse_info));
50  source_->parser->set_allow_lazy(source_->allow_lazy);
51  source_->parser->ParseOnBackground();
52 
53  if (script_data != NULL) {
55  script_data->data(), script_data->length(),
57  script_data->ReleaseDataOwnership();
58  delete script_data;
59  }
60 }
61 }
62 } // namespace v8::internal
@ kProduceParserCache
Definition: v8.h:1161
@ kProduceCodeCache
Definition: v8.h:1163
@ kNoCompileOptions
Definition: v8.h:1160
BackgroundParsingTask(StreamedSource *source, ScriptCompiler::CompileOptions options, int stack_size, Isolate *isolate)
ScriptCompiler::CompileOptions options_
static bool DebuggerWantsEagerCompilation(CompilationInfo *info, bool allow_lazy_without_ctx=false)
Definition: compiler.cc:1404
uint32_t HashSeed()
Definition: heap.h:1237
const byte * data() const
Definition: compiler.h:40
int length() const
Definition: compiler.h:41
enable harmony numeric enable harmony object literal extensions Optimize object Array DOM strings and string trace pretenuring decisions of HAllocate instructions Enables optimizations which favor memory size over execution speed maximum source size in bytes considered for a single inlining maximum cumulative number of AST nodes considered for inlining trace the tracking of allocation sites deoptimize every n garbage collections perform array bounds checks elimination analyze liveness of environment slots and zap dead values flushes the cache of optimized code for closures on every GC allow uint32 values on optimize frames if they are used only in safe operations track concurrent recompilation artificial compilation delay in ms do not emit check maps for constant values that have a leaf deoptimize the optimized code if the layout of the maps changes enable context specialization in TurboFan execution budget before interrupt is triggered max percentage of megamorphic generic ICs to allow optimization enable use of SAHF instruction if enable use of VFP3 instructions if available enable use of NEON instructions if enable use of SDIV and UDIV instructions if enable use of MLS instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of d16 d31 registers on ARM this requires VFP3 force all emitted branches to be in long enable alignment of csp to bytes on platforms which prefer the register to always be NULL
#define DCHECK(condition)
Definition: logging.h:205
const int KB
Definition: globals.h:106
Debugger support for the V8 JavaScript engine.
Definition: accessors.cc:20
Compilation data that the embedder can cache and pass back to speed up future compilations.
Definition: v8.h:1028
SmartPointer< ScriptCompiler::ExternalSourceStream > source_stream
ScriptCompiler::StreamedSource::Encoding encoding
SmartPointer< ScriptCompiler::CachedData > cached_data
SmartPointer< CompilationInfo > info