blob: 0e708ed4083277f18c46dacb71edda0aa5ff68d5 [file] [log] [blame]
Nicolas Geoffray818f2102014-02-18 16:43:35 +00001/*
Nicolas Geoffray818f2102014-02-18 16:43:35 +00002 * 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
Nicolas Geoffraye5038322014-07-04 09:41:32 +010017#include "builder.h"
18
Mathieu Chartierc7853442015-03-27 14:35:38 -070019#include "art_field-inl.h"
David Srbecky0cf44932015-12-09 14:09:59 +000020#include "base/arena_bit_vector.h"
21#include "base/bit_vector-inl.h"
Andreas Gamped881df52014-11-24 23:28:39 -080022#include "base/logging.h"
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010023#include "data_type-inl.h"
Jeff Hao848f70a2014-01-15 13:49:50 -080024#include "dex/verified_method.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000025#include "driver/compiler_options.h"
Nicolas Geoffraye5038322014-07-04 09:41:32 +010026#include "mirror/class_loader.h"
27#include "mirror/dex_cache.h"
Nicolas Geoffray818f2102014-02-18 16:43:35 +000028#include "nodes.h"
Nicolas Geoffraye5038322014-07-04 09:41:32 +010029#include "thread.h"
Vladimir Marko58155012015-08-19 12:49:41 +000030#include "utils/dex_cache_arrays_layout-inl.h"
Nicolas Geoffray818f2102014-02-18 16:43:35 +000031
32namespace art {
33
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010034HGraphBuilder::HGraphBuilder(HGraph* graph,
35 DexCompilationUnit* dex_compilation_unit,
36 const DexCompilationUnit* const outer_compilation_unit,
37 CompilerDriver* driver,
38 CodeGenerator* code_generator,
39 OptimizingCompilerStats* compiler_stats,
40 const uint8_t* interpreter_metadata,
41 Handle<mirror::DexCache> dex_cache,
42 VariableSizedHandleScope* handles)
43 : graph_(graph),
44 dex_file_(&graph->GetDexFile()),
45 code_item_(*dex_compilation_unit->GetCodeItem()),
46 dex_compilation_unit_(dex_compilation_unit),
47 compiler_driver_(driver),
48 compilation_stats_(compiler_stats),
49 block_builder_(graph, dex_file_, code_item_),
50 ssa_builder_(graph,
51 dex_compilation_unit->GetClassLoader(),
52 dex_compilation_unit->GetDexCache(),
53 handles),
54 instruction_builder_(graph,
55 &block_builder_,
56 &ssa_builder_,
57 dex_file_,
58 code_item_,
59 DataType::FromShorty(dex_compilation_unit_->GetShorty()[0]),
60 dex_compilation_unit,
61 outer_compilation_unit,
62 driver,
63 code_generator,
64 interpreter_metadata,
65 compiler_stats,
66 dex_cache,
67 handles) {}
68
David Brazdil86ea7ee2016-02-16 09:26:07 +000069bool HGraphBuilder::SkipCompilation(size_t number_of_branches) {
70 if (compiler_driver_ == nullptr) {
71 // Note that the compiler driver is null when unit testing.
72 return false;
73 }
74
Calin Juravle48c2b032014-12-09 18:11:36 +000075 const CompilerOptions& compiler_options = compiler_driver_->GetCompilerOptions();
Andreas Gampe29d38e72016-03-23 15:31:51 +000076 CompilerFilter::Filter compiler_filter = compiler_options.GetCompilerFilter();
77 if (compiler_filter == CompilerFilter::kEverything) {
Nicolas Geoffray43a539f2014-12-02 10:19:51 +000078 return false;
79 }
80
David Brazdil86ea7ee2016-02-16 09:26:07 +000081 if (compiler_options.IsHugeMethod(code_item_.insns_size_in_code_units_)) {
Calin Juravle48c2b032014-12-09 18:11:36 +000082 VLOG(compiler) << "Skip compilation of huge method "
David Sehr709b0702016-10-13 09:12:37 -070083 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
David Brazdil86ea7ee2016-02-16 09:26:07 +000084 << ": " << code_item_.insns_size_in_code_units_ << " code units";
Igor Murashkin1e065a52017-08-09 13:20:34 -070085 MaybeRecordStat(compilation_stats_,
86 MethodCompilationStat::kNotCompiledHugeMethod);
Nicolas Geoffray43a539f2014-12-02 10:19:51 +000087 return true;
88 }
89
90 // If it's large and contains no branches, it's likely to be machine generated initialization.
David Brazdil86ea7ee2016-02-16 09:26:07 +000091 if (compiler_options.IsLargeMethod(code_item_.insns_size_in_code_units_)
David Brazdil1b498722015-03-31 11:37:18 +010092 && (number_of_branches == 0)) {
Calin Juravle48c2b032014-12-09 18:11:36 +000093 VLOG(compiler) << "Skip compilation of large method with no branch "
David Sehr709b0702016-10-13 09:12:37 -070094 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
David Brazdil86ea7ee2016-02-16 09:26:07 +000095 << ": " << code_item_.insns_size_in_code_units_ << " code units";
Igor Murashkin1e065a52017-08-09 13:20:34 -070096 MaybeRecordStat(compilation_stats_,
97 MethodCompilationStat::kNotCompiledLargeMethodNoBranches);
Nicolas Geoffray43a539f2014-12-02 10:19:51 +000098 return true;
99 }
100
101 return false;
102}
103
David Brazdildee58d62016-04-07 09:54:26 +0000104GraphAnalysisResult HGraphBuilder::BuildGraph() {
David Brazdil60328912016-04-04 17:47:42 +0000105 DCHECK(graph_->GetBlocks().empty());
David Brazdildee58d62016-04-07 09:54:26 +0000106
107 graph_->SetNumberOfVRegs(code_item_.registers_size_);
108 graph_->SetNumberOfInVRegs(code_item_.ins_size_);
David Brazdil86ea7ee2016-02-16 09:26:07 +0000109 graph_->SetMaximumNumberOfOutVRegs(code_item_.outs_size_);
110 graph_->SetHasTryCatch(code_item_.tries_size_ != 0);
David Brazdil86ea7ee2016-02-16 09:26:07 +0000111
112 // 1) Create basic blocks and link them together. Basic blocks are left
113 // unpopulated with the exception of synthetic blocks, e.g. HTryBoundaries.
114 if (!block_builder_.Build()) {
115 return kAnalysisInvalidBytecode;
116 }
117
118 // 2) Decide whether to skip this method based on its code size and number
119 // of branches.
120 if (SkipCompilation(block_builder_.GetNumberOfBranches())) {
121 return kAnalysisSkipped;
122 }
123
124 // 3) Build the dominator tree and fill in loop and try/catch metadata.
David Brazdilbadd8262016-02-02 16:28:56 +0000125 GraphAnalysisResult result = graph_->BuildDominatorTree();
126 if (result != kAnalysisSuccess) {
127 return result;
128 }
129
David Brazdil86ea7ee2016-02-16 09:26:07 +0000130 // 4) Populate basic blocks with instructions.
David Brazdildee58d62016-04-07 09:54:26 +0000131 if (!instruction_builder_.Build()) {
David Brazdil86ea7ee2016-02-16 09:26:07 +0000132 return kAnalysisInvalidBytecode;
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000133 }
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000134
David Brazdil86ea7ee2016-02-16 09:26:07 +0000135 // 5) Type the graph and eliminate dead/redundant phis.
David Brazdildee58d62016-04-07 09:54:26 +0000136 return ssa_builder_.BuildSsa();
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +0000137}
138
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000139} // namespace art