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

Unified Diff: src/compiler/graph-replay.h

Issue 2775423005: [turbofan] Remove the --print-turbo-replay flag. (Closed)
Patch Set: Actually remove the flag Created 3 years, 9 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 | « BUILD.gn ('k') | src/compiler/graph-replay.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/graph-replay.h
diff --git a/src/compiler/graph-replay.h b/src/compiler/graph-replay.h
deleted file mode 100644
index be89ebd045b531af864567e6d8ee5ebfb495fe95..0000000000000000000000000000000000000000
--- a/src/compiler/graph-replay.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef V8_COMPILER_GRAPH_REPLAY_H_
-#define V8_COMPILER_GRAPH_REPLAY_H_
-
-#include "src/compiler/node.h"
-
-namespace v8 {
-namespace internal {
-namespace compiler {
-
-// Forward declarations.
-class Graph;
-
-// Helper class to print a full replay of a graph. This replay can be used to
-// materialize the same graph within a C++ unit test and hence test subsequent
-// optimization passes on a graph without going through the construction steps.
-class GraphReplayPrinter {
- public:
-#ifdef DEBUG
- static void PrintReplay(Graph* graph);
-#else
- static void PrintReplay(Graph* graph) {}
-#endif
-
- private:
- GraphReplayPrinter() {}
-
- static void PrintReplayOpCreator(const Operator* op);
-
- DISALLOW_COPY_AND_ASSIGN(GraphReplayPrinter);
-};
-
-} // namespace compiler
-} // namespace internal
-} // namespace v8
-
-#endif // V8_COMPILER_GRAPH_REPLAY_H_
« no previous file with comments | « BUILD.gn ('k') | src/compiler/graph-replay.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698