blob: 72949b0b7b77ec10abe63d29586afe994c9b8325 [file] [log] [blame]
Ian Rogers08f753d2012-08-24 14:35:25 -07001/*
2 * Copyright (C) 2012 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
David Sehr334b9d72018-02-12 18:27:56 -080017#ifndef ART_LIBDEXFILE_DEX_MODIFIERS_H_
18#define ART_LIBDEXFILE_DEX_MODIFIERS_H_
Ian Rogers08f753d2012-08-24 14:35:25 -070019
Andreas Gampe1db789e2019-05-01 14:54:43 -070020#include <string>
21
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080022#include <stdint.h>
23
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -070024namespace art {
25
Andreas Gampe51829322014-08-25 15:05:04 -070026static constexpr uint32_t kAccPublic = 0x0001; // class, field, method, ic
27static constexpr uint32_t kAccPrivate = 0x0002; // field, method, ic
28static constexpr uint32_t kAccProtected = 0x0004; // field, method, ic
29static constexpr uint32_t kAccStatic = 0x0008; // field, method, ic
30static constexpr uint32_t kAccFinal = 0x0010; // class, field, method, ic
31static constexpr uint32_t kAccSynchronized = 0x0020; // method (only allowed on natives)
32static constexpr uint32_t kAccSuper = 0x0020; // class (not used in dex)
33static constexpr uint32_t kAccVolatile = 0x0040; // field
34static constexpr uint32_t kAccBridge = 0x0040; // method (1.5)
35static constexpr uint32_t kAccTransient = 0x0080; // field
36static constexpr uint32_t kAccVarargs = 0x0080; // method (1.5)
37static constexpr uint32_t kAccNative = 0x0100; // method
38static constexpr uint32_t kAccInterface = 0x0200; // class, ic
39static constexpr uint32_t kAccAbstract = 0x0400; // class, method, ic
40static constexpr uint32_t kAccStrict = 0x0800; // method
41static constexpr uint32_t kAccSynthetic = 0x1000; // class, field, method, ic
42static constexpr uint32_t kAccAnnotation = 0x2000; // class, ic (1.5)
43static constexpr uint32_t kAccEnum = 0x4000; // class, field, ic (1.5)
Ian Rogers08f753d2012-08-24 14:35:25 -070044
Andreas Gampe51829322014-08-25 15:05:04 -070045static constexpr uint32_t kAccJavaFlagsMask = 0xffff; // bits set from Java sources (low 16)
Ian Rogers08f753d2012-08-24 14:35:25 -070046
Igor Murashkindf707e42016-02-02 16:56:50 -080047static constexpr uint32_t kAccConstructor = 0x00010000; // method (dex only) <(cl)init>
48static constexpr uint32_t kAccDeclaredSynchronized = 0x00020000; // method (dex only)
49static constexpr uint32_t kAccClassIsProxy = 0x00040000; // class (dex only)
Alex Light7532d582017-02-13 16:36:06 -080050// Set to indicate that the ArtMethod is obsolete and has a different DexCache + DexFile from its
51// declaring class. This flag may only be applied to methods.
52static constexpr uint32_t kAccObsoleteMethod = 0x00040000; // method (runtime)
Igor Murashkindf707e42016-02-02 16:56:50 -080053// Used by a method to denote that its execution does not need to go through slow path interpreter.
Vladimir Markob0a6aee2017-10-27 10:34:04 +010054static constexpr uint32_t kAccSkipAccessChecks = 0x00080000; // method (runtime, not native)
David Brazdil85865692018-10-30 17:26:20 +000055static constexpr uint32_t kAccSkipHiddenapiChecks = 0x00100000; // class (runtime)
Nicolas Geoffray4ac0e152019-09-18 06:14:50 +000056// Used by a class to denote that this class and any objects with this as a
57// declaring-class/super-class are to be considered obsolete, meaning they should not be used by.
58static constexpr uint32_t kAccObsoleteObject = 0x00200000; // class (runtime)
Vladimir Markode0d0de2021-03-18 14:12:35 +000059// This is set by the class linker during LinkInterfaceMethods. It is used by a method
60// to represent that it was copied from its declaring class into another class.
61// We need copies of the original method because the method may end up in different
62// places in classes vtables, and the vtable index is set in ArtMethod.method_index.
63//
64// Default methods copied to a sub-interface or a concrete class shall have this bit set.
65// Default conflict methods shall be marked as copied, abstract and default.
66// Miranda methods shall be marked as copied and abstract but not default.
67//
68// We do not have intrinsics for any default methods and therefore intrinsics are never
69// copied. We can therefore use a flag from the intrinsic flags range.
70static constexpr uint32_t kAccCopied = 0x01000000; // method (runtime)
Igor Murashkindf707e42016-02-02 16:56:50 -080071static constexpr uint32_t kAccDefault = 0x00400000; // method (runtime)
Vladimir Markob0a6aee2017-10-27 10:34:04 +010072// Native method flags are set when linking the methods based on the presence of the
73// @dalvik.annotation.optimization.{Fast,Critical}Native annotations with build visibility.
74// Reuse the values of kAccSkipAccessChecks and kAccMiranda which are not used for native methods.
75static constexpr uint32_t kAccFastNative = 0x00080000; // method (runtime; native only)
Vladimir Markode0d0de2021-03-18 14:12:35 +000076static constexpr uint32_t kAccCriticalNative = 0x00100000; // method (runtime; native only)
Mathieu Chartierf044c222017-05-31 15:27:54 -070077
78// Set by the JIT when clearing profiling infos to denote that a method was previously warm.
79static constexpr uint32_t kAccPreviouslyWarm = 0x00800000; // method (runtime)
80
Nicolas Geoffray62e631a2016-04-20 16:27:53 +010081// Set by the verifier for a method we do not want the compiler to compile.
Mathieu Chartierf044c222017-05-31 15:27:54 -070082static constexpr uint32_t kAccCompileDontBother = 0x02000000; // method (runtime)
Andreas Gampef517e282016-04-28 14:56:54 -070083
Vladimir Marko3907ce02021-03-19 15:37:38 +000084// Used in conjunction with kAccCompileDontBother to mark the method as pre compiled
85// by the JIT compiler. We are reusing the value of the kAccPreviouslyWarm flag which
86// is meaningless for other methods with kAccCompileDontBother as we do not collect
87// samples for such methods.
88static constexpr uint32_t kAccPreCompiled = 0x00800000; // method (runtime)
89static_assert(kAccPreCompiled == kAccPreviouslyWarm);
Nicolas Geoffraye32d24c2019-07-05 10:28:59 +010090
Andreas Gampef517e282016-04-28 14:56:54 -070091// Set by the verifier for a method that could not be verified to follow structured locking.
Mathieu Chartierf044c222017-05-31 15:27:54 -070092static constexpr uint32_t kAccMustCountLocks = 0x04000000; // method (runtime)
Mingyao Yang063fc772016-08-02 11:02:54 -070093
94// Set by the class linker for a method that has only one implementation for a
95// virtual call.
96static constexpr uint32_t kAccSingleImplementation = 0x08000000; // method (runtime)
97
Nicolas Geoffray40cd07c2021-03-15 18:33:23 +000098// Whether nterp can take a fast path when entering this method (runtime; non-native)
99static constexpr uint32_t kAccNterpEntryPointFastPathFlag = 0x00100000;
Nicolas Geoffray43c9cd72021-03-10 15:09:19 +0000100// Set by the class linker to mark that a method does not have floating points
101// or longs in its shorty.
102static constexpr uint32_t kAccNterpInvokeFastPathFlag = 0x00200000; // method (runtime)
Nicolas Geoffray40cd07c2021-03-15 18:33:23 +0000103
David Brazdil85865692018-10-30 17:26:20 +0000104static constexpr uint32_t kAccPublicApi = 0x10000000; // field, method
David Brazdil90faceb2018-12-14 14:36:15 +0000105static constexpr uint32_t kAccCorePlatformApi = 0x20000000; // field, method
David Brazdilf6a8a552018-01-15 18:10:50 +0000106
Nicolas Geoffrayf9ae8e32022-02-15 22:54:11 +0000107// For methods which we'd like to share memory between zygote and apps.
108// Uses an intrinsic bit but that's OK as intrinsics are always in the boot image.
109static constexpr uint32_t kAccMemorySharedMethod = 0x40000000;
Orion Hodsoncfcc9cf2017-09-29 15:07:27 +0100110
111// Set by the compiler driver when compiling boot classes with instrinsic methods.
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100112static constexpr uint32_t kAccIntrinsic = 0x80000000; // method (runtime)
Nicolas Geoffray62e631a2016-04-20 16:27:53 +0100113
Ian Rogers08f753d2012-08-24 14:35:25 -0700114// Special runtime-only flags.
Alex Lighteb7c1442015-08-31 13:17:42 -0700115// Interface and all its super-interfaces with default methods have been recursively initialized.
116static constexpr uint32_t kAccRecursivelyInitialized = 0x20000000;
117// Interface declares some default method.
118static constexpr uint32_t kAccHasDefaultMethod = 0x40000000;
Andreas Gampe51829322014-08-25 15:05:04 -0700119// class/ancestor overrides finalize()
120static constexpr uint32_t kAccClassIsFinalizable = 0x80000000;
Andreas Gampe51829322014-08-25 15:05:04 -0700121
David Brazdil90faceb2018-12-14 14:36:15 +0000122static constexpr uint32_t kAccHiddenapiBits = kAccPublicApi | kAccCorePlatformApi;
123
Orion Hodsoncfcc9cf2017-09-29 15:07:27 +0100124// Continuous sequence of bits used to hold the ordinal of an intrinsic method. Flags
125// which overlap are not valid when kAccIntrinsic is set.
David Brazdil85865692018-10-30 17:26:20 +0000126static constexpr uint32_t kAccIntrinsicBits = kAccHiddenapiBits |
Vladimir Markode0d0de2021-03-18 14:12:35 +0000127 kAccSingleImplementation | kAccMustCountLocks | kAccCompileDontBother | kAccCopied |
Nicolas Geoffrayf9ae8e32022-02-15 22:54:11 +0000128 kAccPreviouslyWarm | kAccMemorySharedMethod;
Nicolas Geoffray762869d2016-07-15 15:28:35 +0100129
Andreas Gampe51829322014-08-25 15:05:04 -0700130// Valid (meaningful) bits for a field.
131static constexpr uint32_t kAccValidFieldFlags = kAccPublic | kAccPrivate | kAccProtected |
132 kAccStatic | kAccFinal | kAccVolatile | kAccTransient | kAccSynthetic | kAccEnum;
133
134// Valid (meaningful) bits for a method.
135static constexpr uint32_t kAccValidMethodFlags = kAccPublic | kAccPrivate | kAccProtected |
136 kAccStatic | kAccFinal | kAccSynchronized | kAccBridge | kAccVarargs | kAccNative |
Vladimir Markob0a6aee2017-10-27 10:34:04 +0100137 kAccAbstract | kAccStrict | kAccSynthetic | kAccConstructor | kAccDeclaredSynchronized;
138static_assert(((kAccIntrinsic | kAccIntrinsicBits) & kAccValidMethodFlags) == 0,
139 "Intrinsic bits and valid dex file method access flags must not overlap.");
Andreas Gampe51829322014-08-25 15:05:04 -0700140
141// Valid (meaningful) bits for a class (not interface).
142// Note 1. These are positive bits. Other bits may have to be zero.
143// Note 2. Inner classes can expose more access flags to Java programs. That is handled by libcore.
144static constexpr uint32_t kAccValidClassFlags = kAccPublic | kAccFinal | kAccSuper |
145 kAccAbstract | kAccSynthetic | kAccEnum;
146
147// Valid (meaningful) bits for an interface.
148// Note 1. Annotations are interfaces.
149// Note 2. These are positive bits. Other bits may have to be zero.
150// Note 3. Inner classes can expose more access flags to Java programs. That is handled by libcore.
151static constexpr uint32_t kAccValidInterfaceFlags = kAccPublic | kAccInterface |
152 kAccAbstract | kAccSynthetic | kAccAnnotation;
Ian Rogers08f753d2012-08-24 14:35:25 -0700153
David Brazdil2b9c35b2018-01-12 15:44:43 +0000154static constexpr uint32_t kAccVisibilityFlags = kAccPublic | kAccPrivate | kAccProtected;
155
David Sehr8c0961f2018-01-23 16:11:38 -0800156// Returns a human-readable version of the Java part of the access flags, e.g., "private static "
157// (note the trailing whitespace).
158std::string PrettyJavaAccessFlags(uint32_t access_flags);
159
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -0700160} // namespace art
161
David Sehr334b9d72018-02-12 18:27:56 -0800162#endif // ART_LIBDEXFILE_DEX_MODIFIERS_H_
Ian Rogers08f753d2012-08-24 14:35:25 -0700163