From 2979d53b8abf6ea4122783b58c35c82aea437000 Mon Sep 17 00:00:00 2001 From: Santiago Aboy Solanes Date: Thu, 29 Sep 2022 18:03:13 +0100 Subject: Add compiler support for @NeverInline This change sets methods as not inlineable if they are annotated with @NeverInline. This is done by adding a new method in dex_file_annotations.h that checks if a method is annotated, similar to @NeverCompile. Bug: 246530973 Change-Id: I5851fd85367f49d7af3201a7a3ef766f669401e9 --- compiler/optimizing/inliner.cc | 9 +++++++++ compiler/optimizing/optimizing_compiler_stats.h | 1 + 2 files changed, 10 insertions(+) (limited to 'compiler') diff --git a/compiler/optimizing/inliner.cc b/compiler/optimizing/inliner.cc index cdd8fb2638..cfde561194 100644 --- a/compiler/optimizing/inliner.cc +++ b/compiler/optimizing/inliner.cc @@ -1379,6 +1379,15 @@ bool HInliner::IsInliningAllowed(ArtMethod* method, const CodeItemDataAccessor& return false; } + if (annotations::MethodIsNeverInline(*method->GetDexFile(), + method->GetClassDef(), + method->GetDexMethodIndex())) { + LOG_FAIL(stats_, MethodCompilationStat::kNotInlinedNeverInlineAnnotation) + << "Method " << method->PrettyMethod() + << " has the @NeverInline annotation so it won't be inlined"; + return false; + } + return true; } diff --git a/compiler/optimizing/optimizing_compiler_stats.h b/compiler/optimizing/optimizing_compiler_stats.h index 5e316ba403..18b3a60546 100644 --- a/compiler/optimizing/optimizing_compiler_stats.h +++ b/compiler/optimizing/optimizing_compiler_stats.h @@ -96,6 +96,7 @@ enum class MethodCompilationStat { kNotInlinedTryCatchCallee, kNotInlinedRegisterAllocator, kNotInlinedCannotBuild, + kNotInlinedNeverInlineAnnotation, kNotInlinedNotCompilable, kNotInlinedNotVerified, kNotInlinedCodeItem, -- cgit v1.2.3-59-g8ed1b