blob: 8d6fe04c2b2319ff90293b093d9f496383310995 [file] [log] [blame]
Nicolas Geoffrayf635e632014-05-14 09:43:38 +01001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_COMPILER_OPTIMIZING_GRAPH_VISUALIZER_H_
18#define ART_COMPILER_OPTIMIZING_GRAPH_VISUALIZER_H_
19
Ian Rogerscf7f1912014-10-22 22:06:39 -070020#include <ostream>
21
Ian Rogers0279ebb2014-10-08 17:27:48 -070022#include "base/value_object.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010023
24namespace art {
25
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010026class CodeGenerator;
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010027class DexCompilationUnit;
28class HGraph;
29
30/**
David Brazdilee690a32014-12-01 17:04:16 +000031 * This class outputs the HGraph in the C1visualizer format.
32 * Note: Currently only works if the compiler is single threaded.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010033 */
34class HGraphVisualizer : public ValueObject {
35 public:
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010036 HGraphVisualizer(std::ostream* output,
37 HGraph* graph,
38 const char* string_filter,
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010039 const CodeGenerator& codegen,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000040 const char* method_name);
Nicolas Geoffray0d3f5782014-05-14 09:43:38 +010041
David Brazdilee690a32014-12-01 17:04:16 +000042 void DumpGraph(const char* pass_name, bool is_after_pass = true) const;
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010043
44 private:
45 std::ostream* const output_;
46 HGraph* const graph_;
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010047 const CodeGenerator& codegen_;
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010048
49 // Is true when `output_` is not null, and the compiled method's name
50 // contains the string_filter given in the constructor.
51 bool is_enabled_;
52
53 DISALLOW_COPY_AND_ASSIGN(HGraphVisualizer);
54};
55
56} // namespace art
57
58#endif // ART_COMPILER_OPTIMIZING_GRAPH_VISUALIZER_H_