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

Unified Diff: src/crankshaft/hydrogen.cc

Issue 2251673003: Revert of [Interpreter] Introduce InterpreterCompilationJob (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@offheap_peekhole
Patch Set: Created 4 years, 4 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 | « src/crankshaft/hydrogen.h ('k') | src/crankshaft/lithium-codegen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/crankshaft/hydrogen.cc
diff --git a/src/crankshaft/hydrogen.cc b/src/crankshaft/hydrogen.cc
index 41724c480a5e6afbe25b3482fcc4a4e12f94fa0d..8b795ea724193741f564cfe1329f6475a6a957bf 100644
--- a/src/crankshaft/hydrogen.cc
+++ b/src/crankshaft/hydrogen.cc
@@ -114,7 +114,7 @@
#undef DEF_VISIT
};
-HCompilationJob::Status HCompilationJob::PrepareJobImpl() {
+HCompilationJob::Status HCompilationJob::CreateGraphImpl() {
if (!isolate()->use_crankshaft() ||
info()->shared_info()->dont_crankshaft()) {
// Crankshaft is entirely disabled.
@@ -203,7 +203,7 @@
return SUCCEEDED;
}
-HCompilationJob::Status HCompilationJob::ExecuteJobImpl() {
+HCompilationJob::Status HCompilationJob::OptimizeGraphImpl() {
DCHECK(graph_ != NULL);
BailoutReason bailout_reason = kNoReason;
@@ -217,7 +217,7 @@
return FAILED;
}
-HCompilationJob::Status HCompilationJob::FinalizeJobImpl() {
+HCompilationJob::Status HCompilationJob::GenerateCodeImpl() {
DCHECK(chunk_ != NULL);
DCHECK(graph_ != NULL);
{
@@ -233,7 +233,7 @@
}
return FAILED;
}
- CompilationJob::RegisterWeakObjectsInOptimizedCode(optimized_code);
+ RegisterWeakObjectsInOptimizedCode(optimized_code);
info()->SetCode(optimized_code);
}
// Add to the weak list of optimized code objects.
« no previous file with comments | « src/crankshaft/hydrogen.h ('k') | src/crankshaft/lithium-codegen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698