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

Unified Diff: src/compiler/pipeline.h

Issue 1930773003: [compiler] Untangle CompilationInfo allocated with new. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-compiler-simplify-30
Patch Set: Fix finalization. Created 4 years, 8 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
Index: src/compiler/pipeline.h
diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
index 464014518f4100b8c40ff25d02b2ff84483388be..3971c3191492c277c9a2c084a87ab50d44b0c269 100644
--- a/src/compiler/pipeline.h
+++ b/src/compiler/pipeline.h
@@ -72,8 +72,8 @@ class Pipeline {
Graph* graph,
Schedule* schedule = nullptr);
- // Returns a new compilation job for the given compilation info.
- static CompilationJob* NewCompilationJob(CompilationInfo* info);
+ // Returns a new compilation job for the given function.
+ static CompilationJob* NewCompilationJob(Handle<JSFunction> function);
// Returns a new compilation job for the WebAssembly compilation info.
static CompilationJob* NewWasmCompilationJob(

Powered by Google App Engine
This is Rietveld 408576698