blob: f3b5f08c7efe6923c3aac92478ee355a7d195de0 [file] [log] [blame]
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001/*
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#include "inliner.h"
18
Mathieu Chartiere401d142015-04-22 13:56:20 -070019#include "art_method-inl.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000020#include "builder.h"
21#include "class_linker.h"
22#include "constant_folding.h"
23#include "dead_code_elimination.h"
24#include "driver/compiler_driver-inl.h"
Calin Juravleec748352015-07-29 13:52:12 +010025#include "driver/compiler_options.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000026#include "driver/dex_compilation_unit.h"
27#include "instruction_simplifier.h"
Scott Wakelingd60a1af2015-07-22 14:32:44 +010028#include "intrinsics.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000029#include "mirror/class_loader.h"
30#include "mirror/dex_cache.h"
31#include "nodes.h"
Nicolas Geoffray335005e2015-06-25 10:01:47 +010032#include "optimizing_compiler.h"
Nicolas Geoffray454a4812015-06-09 10:37:32 +010033#include "reference_type_propagation.h"
Nicolas Geoffray259136f2014-12-17 23:21:58 +000034#include "register_allocator.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000035#include "ssa_phi_elimination.h"
36#include "scoped_thread_state_change.h"
37#include "thread.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010038#include "dex/verified_method.h"
39#include "dex/verification_results.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000040
41namespace art {
42
Nicolas Geoffraye418dda2015-08-11 20:03:09 -070043static constexpr size_t kMaximumNumberOfHInstructions = 12;
44
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000045void HInliner::Run() {
Calin Juravle8f96df82015-07-29 15:58:48 +010046 const CompilerOptions& compiler_options = compiler_driver_->GetCompilerOptions();
47 if ((compiler_options.GetInlineDepthLimit() == 0)
48 || (compiler_options.GetInlineMaxCodeUnits() == 0)) {
49 return;
50 }
Nicolas Geoffraye50b8d22015-03-13 08:57:42 +000051 if (graph_->IsDebuggable()) {
52 // For simplicity, we currently never inline when the graph is debuggable. This avoids
53 // doing some logic in the runtime to discover if a method could have been inlined.
54 return;
55 }
Vladimir Markofa6b93c2015-09-15 10:15:55 +010056 const ArenaVector<HBasicBlock*>& blocks = graph_->GetReversePostOrder();
57 DCHECK(!blocks.empty());
58 HBasicBlock* next_block = blocks[0];
59 for (size_t i = 0; i < blocks.size(); ++i) {
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010060 // Because we are changing the graph when inlining, we need to remember the next block.
61 // This avoids doing the inlining work again on the inlined blocks.
Vladimir Markofa6b93c2015-09-15 10:15:55 +010062 if (blocks[i] != next_block) {
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +010063 continue;
64 }
65 HBasicBlock* block = next_block;
Vladimir Markofa6b93c2015-09-15 10:15:55 +010066 next_block = (i == blocks.size() - 1) ? nullptr : blocks[i + 1];
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +000067 for (HInstruction* instruction = block->GetFirstInstruction(); instruction != nullptr;) {
68 HInstruction* next = instruction->GetNext();
Nicolas Geoffray454a4812015-06-09 10:37:32 +010069 HInvoke* call = instruction->AsInvoke();
Razvan A Lupusoru3e90a962015-03-27 13:44:44 -070070 // As long as the call is not intrinsified, it is worth trying to inline.
71 if (call != nullptr && call->GetIntrinsic() == Intrinsics::kNone) {
Nicolas Geoffray79041292015-03-26 10:05:54 +000072 // We use the original invoke type to ensure the resolution of the called method
73 // works properly.
Vladimir Marko58155012015-08-19 12:49:41 +000074 if (!TryInline(call)) {
Nicolas Geoffray335005e2015-06-25 10:01:47 +010075 if (kIsDebugBuild && IsCompilingWithCoreImage()) {
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000076 std::string callee_name =
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +000077 PrettyMethod(call->GetDexMethodIndex(), *outer_compilation_unit_.GetDexFile());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000078 bool should_inline = callee_name.find("$inline$") != std::string::npos;
79 CHECK(!should_inline) << "Could not inline " << callee_name;
80 }
Guillaume "Vermeille" Sancheze918d382015-06-03 15:32:41 +010081 } else {
Nicolas Geoffray335005e2015-06-25 10:01:47 +010082 if (kIsDebugBuild && IsCompilingWithCoreImage()) {
Guillaume "Vermeille" Sancheze918d382015-06-03 15:32:41 +010083 std::string callee_name =
84 PrettyMethod(call->GetDexMethodIndex(), *outer_compilation_unit_.GetDexFile());
85 bool must_not_inline = callee_name.find("$noinline$") != std::string::npos;
86 CHECK(!must_not_inline) << "Should not have inlined " << callee_name;
87 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000088 }
89 }
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +000090 instruction = next;
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000091 }
92 }
93}
94
Nicolas Geoffray454a4812015-06-09 10:37:32 +010095static bool IsMethodOrDeclaringClassFinal(ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -070096 SHARED_REQUIRES(Locks::mutator_lock_) {
Nicolas Geoffray454a4812015-06-09 10:37:32 +010097 return method->IsFinal() || method->GetDeclaringClass()->IsFinal();
98}
99
100/**
101 * Given the `resolved_method` looked up in the dex cache, try to find
102 * the actual runtime target of an interface or virtual call.
103 * Return nullptr if the runtime target cannot be proven.
104 */
105static ArtMethod* FindVirtualOrInterfaceTarget(HInvoke* invoke, ArtMethod* resolved_method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700106 SHARED_REQUIRES(Locks::mutator_lock_) {
Nicolas Geoffray454a4812015-06-09 10:37:32 +0100107 if (IsMethodOrDeclaringClassFinal(resolved_method)) {
108 // No need to lookup further, the resolved method will be the target.
109 return resolved_method;
110 }
111
112 HInstruction* receiver = invoke->InputAt(0);
113 if (receiver->IsNullCheck()) {
114 // Due to multiple levels of inlining within the same pass, it might be that
115 // null check does not have the reference type of the actual receiver.
116 receiver = receiver->InputAt(0);
117 }
118 ReferenceTypeInfo info = receiver->GetReferenceTypeInfo();
Calin Juravle2e768302015-07-28 14:41:11 +0000119 DCHECK(info.IsValid()) << "Invalid RTI for " << receiver->DebugName();
120 if (!info.IsExact()) {
Nicolas Geoffray454a4812015-06-09 10:37:32 +0100121 // We currently only support inlining with known receivers.
122 // TODO: Remove this check, we should be able to inline final methods
123 // on unknown receivers.
124 return nullptr;
125 } else if (info.GetTypeHandle()->IsInterface()) {
126 // Statically knowing that the receiver has an interface type cannot
127 // help us find what is the target method.
128 return nullptr;
129 } else if (!resolved_method->GetDeclaringClass()->IsAssignableFrom(info.GetTypeHandle().Get())) {
130 // The method that we're trying to call is not in the receiver's class or super classes.
131 return nullptr;
132 }
133
134 ClassLinker* cl = Runtime::Current()->GetClassLinker();
135 size_t pointer_size = cl->GetImagePointerSize();
136 if (invoke->IsInvokeInterface()) {
137 resolved_method = info.GetTypeHandle()->FindVirtualMethodForInterface(
138 resolved_method, pointer_size);
139 } else {
140 DCHECK(invoke->IsInvokeVirtual());
141 resolved_method = info.GetTypeHandle()->FindVirtualMethodForVirtual(
142 resolved_method, pointer_size);
143 }
144
145 if (resolved_method == nullptr) {
146 // The information we had on the receiver was not enough to find
147 // the target method. Since we check above the exact type of the receiver,
148 // the only reason this can happen is an IncompatibleClassChangeError.
149 return nullptr;
150 } else if (resolved_method->IsAbstract()) {
151 // The information we had on the receiver was not enough to find
152 // the target method. Since we check above the exact type of the receiver,
153 // the only reason this can happen is an IncompatibleClassChangeError.
154 return nullptr;
155 } else if (IsMethodOrDeclaringClassFinal(resolved_method)) {
156 // A final method has to be the target method.
157 return resolved_method;
158 } else if (info.IsExact()) {
159 // If we found a method and the receiver's concrete type is statically
160 // known, we know for sure the target.
161 return resolved_method;
162 } else {
163 // Even if we did find a method, the receiver type was not enough to
164 // statically find the runtime target.
165 return nullptr;
166 }
167}
168
169static uint32_t FindMethodIndexIn(ArtMethod* method,
170 const DexFile& dex_file,
171 uint32_t referrer_index)
Mathieu Chartier90443472015-07-16 20:32:27 -0700172 SHARED_REQUIRES(Locks::mutator_lock_) {
Nicolas Geoffray454a4812015-06-09 10:37:32 +0100173 if (method->GetDexFile()->GetLocation().compare(dex_file.GetLocation()) == 0) {
174 return method->GetDexMethodIndex();
175 } else {
176 return method->FindDexMethodIndexInOtherDexFile(dex_file, referrer_index);
177 }
178}
179
Nicolas Geoffraye418dda2015-08-11 20:03:09 -0700180bool HInliner::TryInline(HInvoke* invoke_instruction) {
Calin Juravle175dc732015-08-25 15:42:32 +0100181 if (invoke_instruction->IsInvokeUnresolved()) {
182 return false; // Don't bother to move further if we know the method is unresolved.
183 }
184
Vladimir Marko58155012015-08-19 12:49:41 +0000185 uint32_t method_index = invoke_instruction->GetDexMethodIndex();
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000186 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000187 const DexFile& caller_dex_file = *caller_compilation_unit_.GetDexFile();
188 VLOG(compiler) << "Try inlining " << PrettyMethod(method_index, caller_dex_file);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000189
Nicolas Geoffray35071052015-06-09 15:43:38 +0100190 ClassLinker* class_linker = caller_compilation_unit_.GetClassLinker();
191 // We can query the dex cache directly. The verifier has populated it already.
Vladimir Marko58155012015-08-19 12:49:41 +0000192 ArtMethod* resolved_method;
193 if (invoke_instruction->IsInvokeStaticOrDirect()) {
194 MethodReference ref = invoke_instruction->AsInvokeStaticOrDirect()->GetTargetMethod();
Mathieu Chartier736b5602015-09-02 14:54:11 -0700195 mirror::DexCache* const dex_cache = (&caller_dex_file == ref.dex_file)
196 ? caller_compilation_unit_.GetDexCache().Get()
197 : class_linker->FindDexCache(soa.Self(), *ref.dex_file);
198 resolved_method = dex_cache->GetResolvedMethod(
Vladimir Marko58155012015-08-19 12:49:41 +0000199 ref.dex_method_index, class_linker->GetImagePointerSize());
200 } else {
Mathieu Chartier736b5602015-09-02 14:54:11 -0700201 resolved_method = caller_compilation_unit_.GetDexCache().Get()->GetResolvedMethod(
Vladimir Marko58155012015-08-19 12:49:41 +0000202 method_index, class_linker->GetImagePointerSize());
203 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000204
Mathieu Chartiere401d142015-04-22 13:56:20 -0700205 if (resolved_method == nullptr) {
Calin Juravle175dc732015-08-25 15:42:32 +0100206 // TODO: Can this still happen?
Nicolas Geoffray35071052015-06-09 15:43:38 +0100207 // Method cannot be resolved if it is in another dex file we do not have access to.
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000208 VLOG(compiler) << "Method cannot be resolved " << PrettyMethod(method_index, caller_dex_file);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000209 return false;
210 }
211
Nicolas Geoffray454a4812015-06-09 10:37:32 +0100212 if (!invoke_instruction->IsInvokeStaticOrDirect()) {
213 resolved_method = FindVirtualOrInterfaceTarget(invoke_instruction, resolved_method);
214 if (resolved_method == nullptr) {
215 VLOG(compiler) << "Interface or virtual call to "
216 << PrettyMethod(method_index, caller_dex_file)
217 << " could not be statically determined";
218 return false;
219 }
220 // We have found a method, but we need to find where that method is for the caller's
221 // dex file.
222 method_index = FindMethodIndexIn(resolved_method, caller_dex_file, method_index);
223 if (method_index == DexFile::kDexNoIndex) {
224 VLOG(compiler) << "Interface or virtual call to "
225 << PrettyMethod(resolved_method)
226 << " cannot be inlined because unaccessible to caller";
227 return false;
228 }
229 }
230
Vladimir Marko58155012015-08-19 12:49:41 +0000231 bool same_dex_file =
232 IsSameDexFile(*outer_compilation_unit_.GetDexFile(), *resolved_method->GetDexFile());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000233
234 const DexFile::CodeItem* code_item = resolved_method->GetCodeItem();
235
236 if (code_item == nullptr) {
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000237 VLOG(compiler) << "Method " << PrettyMethod(method_index, caller_dex_file)
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000238 << " is not inlined because it is native";
239 return false;
240 }
241
Calin Juravleec748352015-07-29 13:52:12 +0100242 size_t inline_max_code_units = compiler_driver_->GetCompilerOptions().GetInlineMaxCodeUnits();
243 if (code_item->insns_size_in_code_units_ > inline_max_code_units) {
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000244 VLOG(compiler) << "Method " << PrettyMethod(method_index, caller_dex_file)
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000245 << " is too big to inline";
246 return false;
247 }
248
249 if (code_item->tries_size_ != 0) {
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000250 VLOG(compiler) << "Method " << PrettyMethod(method_index, caller_dex_file)
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000251 << " is not inlined because of try block";
252 return false;
253 }
254
Nicolas Geoffray481303b2015-10-02 12:38:40 +0100255 if (!resolved_method->GetDeclaringClass()->IsVerified()) {
Nicolas Geoffrayccc61972015-10-01 14:34:20 +0100256 uint16_t class_def_idx = resolved_method->GetDeclaringClass()->GetDexClassDefIndex();
257 if (!compiler_driver_->IsMethodVerifiedWithoutFailures(
258 resolved_method->GetDexMethodIndex(), class_def_idx, *resolved_method->GetDexFile())) {
259 VLOG(compiler) << "Method " << PrettyMethod(method_index, caller_dex_file)
260 << " couldn't be verified, so it cannot be inlined";
261 return false;
262 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000263 }
264
Roland Levillain4c0eb422015-04-24 16:43:49 +0100265 if (invoke_instruction->IsInvokeStaticOrDirect() &&
266 invoke_instruction->AsInvokeStaticOrDirect()->IsStaticWithImplicitClinitCheck()) {
267 // Case of a static method that cannot be inlined because it implicitly
268 // requires an initialization check of its declaring class.
269 VLOG(compiler) << "Method " << PrettyMethod(method_index, caller_dex_file)
270 << " is not inlined because it is static and requires a clinit"
271 << " check that cannot be emitted due to Dex cache limitations";
272 return false;
273 }
274
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100275 if (!TryBuildAndInline(resolved_method, invoke_instruction, same_dex_file)) {
Nicolas Geoffrayc0365b12015-03-18 18:31:52 +0000276 return false;
277 }
278
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000279 VLOG(compiler) << "Successfully inlined " << PrettyMethod(method_index, caller_dex_file);
Nicolas Geoffrayc0365b12015-03-18 18:31:52 +0000280 MaybeRecordStat(kInlinedInvoke);
281 return true;
282}
283
Mathieu Chartiere401d142015-04-22 13:56:20 -0700284bool HInliner::TryBuildAndInline(ArtMethod* resolved_method,
Nicolas Geoffrayc0365b12015-03-18 18:31:52 +0000285 HInvoke* invoke_instruction,
Nicolas Geoffraye418dda2015-08-11 20:03:09 -0700286 bool same_dex_file) {
Nicolas Geoffrayc0365b12015-03-18 18:31:52 +0000287 ScopedObjectAccess soa(Thread::Current());
288 const DexFile::CodeItem* code_item = resolved_method->GetCodeItem();
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100289 const DexFile& callee_dex_file = *resolved_method->GetDexFile();
290 uint32_t method_index = resolved_method->GetDexMethodIndex();
Calin Juravle2e768302015-07-28 14:41:11 +0000291 ClassLinker* class_linker = caller_compilation_unit_.GetClassLinker();
Mathieu Chartier736b5602015-09-02 14:54:11 -0700292 Handle<mirror::DexCache> dex_cache(handles_->NewHandle(resolved_method->GetDexCache()));
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000293 DexCompilationUnit dex_compilation_unit(
294 nullptr,
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000295 caller_compilation_unit_.GetClassLoader(),
Calin Juravle2e768302015-07-28 14:41:11 +0000296 class_linker,
Nicolas Geoffray8dbf0cf2015-08-11 02:14:38 +0000297 callee_dex_file,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000298 code_item,
299 resolved_method->GetDeclaringClass()->GetDexClassDefIndex(),
Nicolas Geoffray8dbf0cf2015-08-11 02:14:38 +0000300 method_index,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000301 resolved_method->GetAccessFlags(),
Mathieu Chartier736b5602015-09-02 14:54:11 -0700302 compiler_driver_->GetVerifiedMethod(&callee_dex_file, method_index),
303 dex_cache);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000304
Calin Juravle3cd4fc82015-05-14 15:15:42 +0100305 bool requires_ctor_barrier = false;
306
307 if (dex_compilation_unit.IsConstructor()) {
308 // If it's a super invocation and we already generate a barrier there's no need
309 // to generate another one.
310 // We identify super calls by looking at the "this" pointer. If its value is the
311 // same as the local "this" pointer then we must have a super invocation.
312 bool is_super_invocation = invoke_instruction->InputAt(0)->IsParameterValue()
313 && invoke_instruction->InputAt(0)->AsParameterValue()->IsThis();
314 if (is_super_invocation && graph_->ShouldGenerateConstructorBarrier()) {
315 requires_ctor_barrier = false;
316 } else {
317 Thread* self = Thread::Current();
318 requires_ctor_barrier = compiler_driver_->RequiresConstructorBarrier(self,
319 dex_compilation_unit.GetDexFile(),
320 dex_compilation_unit.GetClassDefIndex());
321 }
322 }
323
Nicolas Geoffray35071052015-06-09 15:43:38 +0100324 InvokeType invoke_type = invoke_instruction->GetOriginalInvokeType();
325 if (invoke_type == kInterface) {
326 // We have statically resolved the dispatch. To please the class linker
327 // at runtime, we change this call as if it was a virtual call.
328 invoke_type = kVirtual;
329 }
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000330 HGraph* callee_graph = new (graph_->GetArena()) HGraph(
Nicolas Geoffray0a23d742015-05-07 11:57:35 +0100331 graph_->GetArena(),
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100332 callee_dex_file,
Nicolas Geoffray0a23d742015-05-07 11:57:35 +0100333 method_index,
Calin Juravle3cd4fc82015-05-14 15:15:42 +0100334 requires_ctor_barrier,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700335 compiler_driver_->GetInstructionSet(),
Nicolas Geoffray35071052015-06-09 15:43:38 +0100336 invoke_type,
Nicolas Geoffray0a23d742015-05-07 11:57:35 +0100337 graph_->IsDebuggable(),
338 graph_->GetCurrentInstructionId());
David Brazdil5e8b1372015-01-23 14:39:08 +0000339
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000340 OptimizingCompilerStats inline_stats;
David Brazdil5e8b1372015-01-23 14:39:08 +0000341 HGraphBuilder builder(callee_graph,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000342 &dex_compilation_unit,
343 &outer_compilation_unit_,
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000344 resolved_method->GetDexFile(),
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000345 compiler_driver_,
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000346 &inline_stats,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700347 resolved_method->GetQuickenedInfo(),
348 dex_cache);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000349
David Brazdil5e8b1372015-01-23 14:39:08 +0000350 if (!builder.BuildGraph(*code_item)) {
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100351 VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000352 << " could not be built, so cannot be inlined";
353 return false;
354 }
355
Nicolas Geoffray259136f2014-12-17 23:21:58 +0000356 if (!RegisterAllocator::CanAllocateRegistersFor(*callee_graph,
357 compiler_driver_->GetInstructionSet())) {
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100358 VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
Nicolas Geoffray259136f2014-12-17 23:21:58 +0000359 << " cannot be inlined because of the register allocator";
360 return false;
361 }
362
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000363 if (!callee_graph->TryBuildingSsa()) {
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100364 VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000365 << " could not be transformed to SSA";
366 return false;
367 }
368
Nicolas Geoffraye418dda2015-08-11 20:03:09 -0700369 size_t parameter_index = 0;
370 for (HInstructionIterator instructions(callee_graph->GetEntryBlock()->GetInstructions());
371 !instructions.Done();
372 instructions.Advance()) {
373 HInstruction* current = instructions.Current();
374 if (current->IsParameterValue()) {
375 HInstruction* argument = invoke_instruction->InputAt(parameter_index++);
376 if (argument->IsNullConstant()) {
377 current->ReplaceWith(callee_graph->GetNullConstant());
378 } else if (argument->IsIntConstant()) {
379 current->ReplaceWith(callee_graph->GetIntConstant(argument->AsIntConstant()->GetValue()));
380 } else if (argument->IsLongConstant()) {
381 current->ReplaceWith(callee_graph->GetLongConstant(argument->AsLongConstant()->GetValue()));
382 } else if (argument->IsFloatConstant()) {
383 current->ReplaceWith(
384 callee_graph->GetFloatConstant(argument->AsFloatConstant()->GetValue()));
385 } else if (argument->IsDoubleConstant()) {
386 current->ReplaceWith(
387 callee_graph->GetDoubleConstant(argument->AsDoubleConstant()->GetValue()));
388 } else if (argument->GetType() == Primitive::kPrimNot) {
389 current->SetReferenceTypeInfo(argument->GetReferenceTypeInfo());
390 current->AsParameterValue()->SetCanBeNull(argument->CanBeNull());
391 }
392 }
393 }
394
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +0000395 // Run simple optimizations on the graph.
Calin Juravle7a9c8852015-04-21 14:07:50 +0100396 HDeadCodeElimination dce(callee_graph, stats_);
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +0000397 HConstantFolding fold(callee_graph);
Nicolas Geoffray454a4812015-06-09 10:37:32 +0100398 ReferenceTypePropagation type_propagation(callee_graph, handles_);
Calin Juravleacf735c2015-02-12 15:25:22 +0000399 InstructionSimplifier simplify(callee_graph, stats_);
Scott Wakelingd60a1af2015-07-22 14:32:44 +0100400 IntrinsicsRecognizer intrinsics(callee_graph, compiler_driver_);
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +0000401
402 HOptimization* optimizations[] = {
Scott Wakelingd60a1af2015-07-22 14:32:44 +0100403 &intrinsics,
Nicolas Geoffray454a4812015-06-09 10:37:32 +0100404 &type_propagation,
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +0000405 &simplify,
Nicolas Geoffraye418dda2015-08-11 20:03:09 -0700406 &dce,
407 &fold,
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +0000408 };
409
410 for (size_t i = 0; i < arraysize(optimizations); ++i) {
411 HOptimization* optimization = optimizations[i];
412 optimization->Run();
413 }
414
Nicolas Geoffraye418dda2015-08-11 20:03:09 -0700415 size_t number_of_instructions_budget = kMaximumNumberOfHInstructions;
Calin Juravleec748352015-07-29 13:52:12 +0100416 if (depth_ + 1 < compiler_driver_->GetCompilerOptions().GetInlineDepthLimit()) {
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000417 HInliner inliner(callee_graph,
418 outer_compilation_unit_,
419 dex_compilation_unit,
420 compiler_driver_,
Nicolas Geoffray454a4812015-06-09 10:37:32 +0100421 handles_,
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000422 stats_,
423 depth_ + 1);
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +0000424 inliner.Run();
Nicolas Geoffraye418dda2015-08-11 20:03:09 -0700425 number_of_instructions_budget += inliner.number_of_inlined_instructions_;
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +0000426 }
427
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100428 // TODO: We should abort only if all predecessors throw. However,
429 // HGraph::InlineInto currently does not handle an exit block with
430 // a throw predecessor.
431 HBasicBlock* exit_block = callee_graph->GetExitBlock();
432 if (exit_block == nullptr) {
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100433 VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100434 << " could not be inlined because it has an infinite loop";
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100435 return false;
436 }
437
438 bool has_throw_predecessor = false;
Vladimir Marko60584552015-09-03 13:35:12 +0000439 for (HBasicBlock* predecessor : exit_block->GetPredecessors()) {
440 if (predecessor->GetLastInstruction()->IsThrow()) {
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100441 has_throw_predecessor = true;
442 break;
443 }
444 }
445 if (has_throw_predecessor) {
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100446 VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100447 << " could not be inlined because one branch always throws";
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100448 return false;
449 }
450
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000451 HReversePostOrderIterator it(*callee_graph);
Nicolas Geoffrayef87c5d2015-01-30 12:41:14 +0000452 it.Advance(); // Past the entry block, it does not contain instructions that prevent inlining.
Nicolas Geoffraye418dda2015-08-11 20:03:09 -0700453 size_t number_of_instructions = 0;
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000454 for (; !it.Done(); it.Advance()) {
455 HBasicBlock* block = it.Current();
456 if (block->IsLoopHeader()) {
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100457 VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000458 << " could not be inlined because it contains a loop";
459 return false;
460 }
461
462 for (HInstructionIterator instr_it(block->GetInstructions());
463 !instr_it.Done();
464 instr_it.Advance()) {
Nicolas Geoffraye418dda2015-08-11 20:03:09 -0700465 if (number_of_instructions++ == number_of_instructions_budget) {
466 VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
467 << " could not be inlined because it is too big.";
468 return false;
469 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000470 HInstruction* current = instr_it.Current();
Nicolas Geoffray276d9da2015-02-02 18:24:11 +0000471
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100472 if (current->IsInvokeInterface()) {
473 // Disable inlining of interface calls. The cost in case of entering the
474 // resolution conflict is currently too high.
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100475 VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100476 << " could not be inlined because it has an interface call.";
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000477 return false;
478 }
479
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100480 if (!same_dex_file && current->NeedsEnvironment()) {
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100481 VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000482 << " could not be inlined because " << current->DebugName()
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100483 << " needs an environment and is in a different dex file";
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000484 return false;
485 }
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000486
Nicolas Geoffrayd23eeef2015-05-18 22:31:29 +0100487 if (!same_dex_file && current->NeedsDexCache()) {
Guillaume "Vermeille" Sanchezae09d2d2015-05-29 10:52:55 +0100488 VLOG(compiler) << "Method " << PrettyMethod(method_index, callee_dex_file)
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000489 << " could not be inlined because " << current->DebugName()
490 << " it is in a different dex file and requires access to the dex cache";
491 return false;
492 }
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000493 }
494 }
Nicolas Geoffraye418dda2015-08-11 20:03:09 -0700495 number_of_inlined_instructions_ += number_of_instructions;
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000496
Calin Juravle2e768302015-07-28 14:41:11 +0000497 HInstruction* return_replacement = callee_graph->InlineInto(graph_, invoke_instruction);
498
499 // When merging the graph we might create a new NullConstant in the caller graph which does
500 // not have the chance to be typed. We assign the correct type here so that we can keep the
501 // assertion that every reference has a valid type. This also simplifies checks along the way.
502 HNullConstant* null_constant = graph_->GetNullConstant();
503 if (!null_constant->GetReferenceTypeInfo().IsValid()) {
504 ReferenceTypeInfo::TypeHandle obj_handle =
505 handles_->NewHandle(class_linker->GetClassRoot(ClassLinker::kJavaLangObject));
506 null_constant->SetReferenceTypeInfo(
507 ReferenceTypeInfo::Create(obj_handle, false /* is_exact */));
508 }
509
510 if ((return_replacement != nullptr)
511 && (return_replacement->GetType() == Primitive::kPrimNot)) {
512 if (!return_replacement->GetReferenceTypeInfo().IsValid()) {
513 // Make sure that we have a valid type for the return. We may get an invalid one when
514 // we inline invokes with multiple branches and create a Phi for the result.
515 // TODO: we could be more precise by merging the phi inputs but that requires
516 // some functionality from the reference type propagation.
517 DCHECK(return_replacement->IsPhi());
Vladimir Marko05792b92015-08-03 11:56:49 +0100518 size_t pointer_size = Runtime::Current()->GetClassLinker()->GetImagePointerSize();
Calin Juravle2e768302015-07-28 14:41:11 +0000519 ReferenceTypeInfo::TypeHandle return_handle =
Vladimir Marko05792b92015-08-03 11:56:49 +0100520 handles_->NewHandle(resolved_method->GetReturnType(true /* resolve */, pointer_size));
Calin Juravle2e768302015-07-28 14:41:11 +0000521 return_replacement->SetReferenceTypeInfo(ReferenceTypeInfo::Create(
David Brazdilbaf89b82015-09-15 11:36:54 +0100522 return_handle, return_handle->CannotBeAssignedFromOtherTypes() /* is_exact */));
Calin Juravle2e768302015-07-28 14:41:11 +0000523 }
524 }
Nicolas Geoffray7c5367b2014-12-17 10:13:46 +0000525
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000526 return true;
527}
528
529} // namespace art