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

Unified Diff: src/compiler/pipeline.cc

Issue 1521363003: [turbofan] Unify pipeline entry for all assemblers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix stats tracing. Created 5 years 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/compiler/pipeline.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/pipeline.cc
diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
index 8a31843ed081df16219d360758f4cb85ba0ddb65..7f3447efdff9a2ab1f5a26ce56e7694afe80b1f9 100644
--- a/src/compiler/pipeline.cc
+++ b/src/compiler/pipeline.cc
@@ -1207,8 +1207,8 @@ Handle<Code> Pipeline::GenerateCodeForCodeStub(Isolate* isolate,
CallDescriptor* call_descriptor,
Graph* graph, Schedule* schedule,
Code::Kind kind,
- const char* code_stub_name) {
- CompilationInfo info(code_stub_name, isolate, graph->zone());
+ const char* debug_name) {
+ CompilationInfo info(debug_name, isolate, graph->zone());
info.set_output_code_kind(kind);
// Construct a pipeline for scheduling and code generation.
@@ -1217,7 +1217,7 @@ Handle<Code> Pipeline::GenerateCodeForCodeStub(Isolate* isolate,
base::SmartPointer<PipelineStatistics> pipeline_statistics;
if (FLAG_turbo_stats) {
pipeline_statistics.Reset(new PipelineStatistics(&info, &zone_pool));
- pipeline_statistics->BeginPhaseKind("interpreter handler codegen");
+ pipeline_statistics->BeginPhaseKind("stub codegen");
}
Pipeline pipeline(&info);
« no previous file with comments | « src/compiler/pipeline.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698