diff options
author | David Brazdil <dbrazdil@google.com> | 2015-01-23 14:39:08 +0000 |
---|---|---|
committer | David Brazdil <dbrazdil@google.com> | 2015-02-04 13:47:49 +0000 |
commit | 5e8b137d28c840b128e2488f954cccee3e86db14 (patch) | |
tree | c56e4c709ce07d605ab4b754e89f7739264feb73 /compiler/optimizing/graph_visualizer.h | |
parent | f9af19413333c271192c3b11425f865bd8054c0c (diff) | |
download | art-5e8b137d28c840b128e2488f954cccee3e86db14.zip art-5e8b137d28c840b128e2488f954cccee3e86db14.tar.gz art-5e8b137d28c840b128e2488f954cccee3e86db14.tar.bz2 |
Create HGraph outside Builder, print timings
This patch refactors the way HGraph objects are created, moving the
instantiation out of the Builder class and creating the CodeGenerator
earlier. The patch uses this to build a single interface for printing
timings info and dumping the CFG.
Change-Id: I2eb63eabf28e2d0f5cdc7affaa690c3a4b1bdd21
Diffstat (limited to 'compiler/optimizing/graph_visualizer.h')
-rw-r--r-- | compiler/optimizing/graph_visualizer.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/optimizing/graph_visualizer.h b/compiler/optimizing/graph_visualizer.h index 8d6fe04..bc553ae 100644 --- a/compiler/optimizing/graph_visualizer.h +++ b/compiler/optimizing/graph_visualizer.h @@ -35,7 +35,6 @@ class HGraphVisualizer : public ValueObject { public: HGraphVisualizer(std::ostream* output, HGraph* graph, - const char* string_filter, const CodeGenerator& codegen, const char* method_name); @@ -46,10 +45,6 @@ class HGraphVisualizer : public ValueObject { HGraph* const graph_; const CodeGenerator& codegen_; - // Is true when `output_` is not null, and the compiled method's name - // contains the string_filter given in the constructor. - bool is_enabled_; - DISALLOW_COPY_AND_ASSIGN(HGraphVisualizer); }; |