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

Unified Diff: src/compiler.h

Issue 2399463008: Create multiple compilation jobs for ignition if compiling multiple literals (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | src/interpreter/interpreter.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler.h
diff --git a/src/compiler.h b/src/compiler.h
index bfeaa8e7c336f739514de2d8db7b39d7ad2fdff2..e983ecebf574206c5299b9f4a02c9ea23d1d6a25 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -6,6 +6,7 @@
#define V8_COMPILER_H_
#include <memory>
+#include <vector>
#include "src/allocation.h"
#include "src/bailout-reason.h"
@@ -23,6 +24,8 @@ class JavaScriptFrame;
class ParseInfo;
class ScriptData;
+enum class ShouldCompile { kIfNecessary, kNever };
+
// The V8 compiler API.
//
// This is the central hub for dispatching to the various compilers within V8.
@@ -53,8 +56,8 @@ class Compiler : public AllStatic {
static MaybeHandle<JSArray> CompileForLiveEdit(Handle<Script> script);
// Prepare a compilation job for unoptimized code. Requires ParseAndAnalyse.
- static CompilationJob* PrepareUnoptimizedCompilationJob(
- CompilationInfo* info);
+ static std::vector<std::unique_ptr<CompilationJob>>
+ PrepareUnoptimizedCompilationJob(CompilationInfo* info);
rmcilroy 2016/10/07 14:26:34 nit - Job->Jobs
// Generate and install code from previously queued compilation job.
static bool FinalizeCompilationJob(CompilationJob* job);
@@ -116,7 +119,8 @@ class Compiler : public AllStatic {
// Create a shared function info object (the code may be lazily compiled).
static Handle<SharedFunctionInfo> GetSharedFunctionInfo(
- FunctionLiteral* node, Handle<Script> script, CompilationInfo* outer);
+ FunctionLiteral* node, Handle<Script> script, CompilationInfo* outer,
+ ShouldCompile should_compile = ShouldCompile::kIfNecessary);
// Create a shared function info object for a native function literal.
static Handle<SharedFunctionInfo> GetSharedFunctionInfoForNative(
« no previous file with comments | « no previous file | src/compiler.cc » ('j') | src/interpreter/interpreter.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698