blob: 2927e1f7c0dbc839a3c40b2e7242d2391b8a9751 [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"
Jeff Hao848f70a2014-01-15 13:49:50 -080023#include "dex/verified_method.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000024#include "driver/compiler_options.h"
Nicolas Geoffraye5038322014-07-04 09:41:32 +010025#include "mirror/class_loader.h"
26#include "mirror/dex_cache.h"
Nicolas Geoffray818f2102014-02-18 16:43:35 +000027#include "nodes.h"
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000028#include "primitive.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
Calin Juravle48c2b032014-12-09 18:11:36 +000034void HGraphBuilder::MaybeRecordStat(MethodCompilationStat compilation_stat) {
35 if (compilation_stats_ != nullptr) {
36 compilation_stats_->RecordStat(compilation_stat);
37 }
38}
39
David Brazdil86ea7ee2016-02-16 09:26:07 +000040bool HGraphBuilder::SkipCompilation(size_t number_of_branches) {
41 if (compiler_driver_ == nullptr) {
42 // Note that the compiler driver is null when unit testing.
43 return false;
44 }
45
Calin Juravle48c2b032014-12-09 18:11:36 +000046 const CompilerOptions& compiler_options = compiler_driver_->GetCompilerOptions();
Andreas Gampe29d38e72016-03-23 15:31:51 +000047 CompilerFilter::Filter compiler_filter = compiler_options.GetCompilerFilter();
48 if (compiler_filter == CompilerFilter::kEverything) {
Nicolas Geoffray43a539f2014-12-02 10:19:51 +000049 return false;
50 }
51
David Brazdil86ea7ee2016-02-16 09:26:07 +000052 if (compiler_options.IsHugeMethod(code_item_.insns_size_in_code_units_)) {
Calin Juravle48c2b032014-12-09 18:11:36 +000053 VLOG(compiler) << "Skip compilation of huge method "
David Sehr709b0702016-10-13 09:12:37 -070054 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
David Brazdil86ea7ee2016-02-16 09:26:07 +000055 << ": " << code_item_.insns_size_in_code_units_ << " code units";
Calin Juravle48c2b032014-12-09 18:11:36 +000056 MaybeRecordStat(MethodCompilationStat::kNotCompiledHugeMethod);
Nicolas Geoffray43a539f2014-12-02 10:19:51 +000057 return true;
58 }
59
60 // If it's large and contains no branches, it's likely to be machine generated initialization.
David Brazdil86ea7ee2016-02-16 09:26:07 +000061 if (compiler_options.IsLargeMethod(code_item_.insns_size_in_code_units_)
David Brazdil1b498722015-03-31 11:37:18 +010062 && (number_of_branches == 0)) {
Calin Juravle48c2b032014-12-09 18:11:36 +000063 VLOG(compiler) << "Skip compilation of large method with no branch "
David Sehr709b0702016-10-13 09:12:37 -070064 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
David Brazdil86ea7ee2016-02-16 09:26:07 +000065 << ": " << code_item_.insns_size_in_code_units_ << " code units";
Calin Juravle48c2b032014-12-09 18:11:36 +000066 MaybeRecordStat(MethodCompilationStat::kNotCompiledLargeMethodNoBranches);
Nicolas Geoffray43a539f2014-12-02 10:19:51 +000067 return true;
68 }
69
70 return false;
71}
72
David Brazdildee58d62016-04-07 09:54:26 +000073GraphAnalysisResult HGraphBuilder::BuildGraph() {
David Brazdil60328912016-04-04 17:47:42 +000074 DCHECK(graph_->GetBlocks().empty());
David Brazdildee58d62016-04-07 09:54:26 +000075
76 graph_->SetNumberOfVRegs(code_item_.registers_size_);
77 graph_->SetNumberOfInVRegs(code_item_.ins_size_);
David Brazdil86ea7ee2016-02-16 09:26:07 +000078 graph_->SetMaximumNumberOfOutVRegs(code_item_.outs_size_);
79 graph_->SetHasTryCatch(code_item_.tries_size_ != 0);
David Brazdil86ea7ee2016-02-16 09:26:07 +000080
81 // 1) Create basic blocks and link them together. Basic blocks are left
82 // unpopulated with the exception of synthetic blocks, e.g. HTryBoundaries.
83 if (!block_builder_.Build()) {
84 return kAnalysisInvalidBytecode;
85 }
86
87 // 2) Decide whether to skip this method based on its code size and number
88 // of branches.
89 if (SkipCompilation(block_builder_.GetNumberOfBranches())) {
90 return kAnalysisSkipped;
91 }
92
93 // 3) Build the dominator tree and fill in loop and try/catch metadata.
David Brazdilbadd8262016-02-02 16:28:56 +000094 GraphAnalysisResult result = graph_->BuildDominatorTree();
95 if (result != kAnalysisSuccess) {
96 return result;
97 }
98
David Brazdil86ea7ee2016-02-16 09:26:07 +000099 // 4) Populate basic blocks with instructions.
David Brazdildee58d62016-04-07 09:54:26 +0000100 if (!instruction_builder_.Build()) {
David Brazdil86ea7ee2016-02-16 09:26:07 +0000101 return kAnalysisInvalidBytecode;
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000102 }
Nicolas Geoffraybe9a92a2014-02-25 14:22:56 +0000103
David Brazdil86ea7ee2016-02-16 09:26:07 +0000104 // 5) Type the graph and eliminate dead/redundant phis.
David Brazdildee58d62016-04-07 09:54:26 +0000105 return ssa_builder_.BuildSsa();
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +0000106}
107
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000108} // namespace art