diff options
author | 2022-09-29 18:03:13 +0100 | |
---|---|---|
committer | 2022-10-05 17:18:11 +0000 | |
commit | 2979d53b8abf6ea4122783b58c35c82aea437000 (patch) | |
tree | 9e5fcf8510159c174f3e713295039bdf663ba646 /compiler/optimizing/optimizing_compiler_stats.h | |
parent | e3a0f6c6239e5aa4544da4bdc90f6e8f999bce69 (diff) |
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
Diffstat (limited to 'compiler/optimizing/optimizing_compiler_stats.h')
-rw-r--r-- | compiler/optimizing/optimizing_compiler_stats.h | 1 |
1 files changed, 1 insertions, 0 deletions
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, |