| Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 1 | /* |
| 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 Sehr | 334b9d7 | 2018-02-12 18:27:56 -0800 | [diff] [blame] | 17 | #ifndef ART_LIBDEXFILE_DEX_MODIFIERS_H_ |
| 18 | #define ART_LIBDEXFILE_DEX_MODIFIERS_H_ |
| Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 19 | |
| Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 20 | #include <stdint.h> |
| 21 | |
| Mathieu Chartier | 52a7f5c | 2015-08-18 18:35:52 -0700 | [diff] [blame] | 22 | namespace art { |
| 23 | |
| Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 24 | static constexpr uint32_t kAccPublic = 0x0001; // class, field, method, ic |
| 25 | static constexpr uint32_t kAccPrivate = 0x0002; // field, method, ic |
| 26 | static constexpr uint32_t kAccProtected = 0x0004; // field, method, ic |
| 27 | static constexpr uint32_t kAccStatic = 0x0008; // field, method, ic |
| 28 | static constexpr uint32_t kAccFinal = 0x0010; // class, field, method, ic |
| 29 | static constexpr uint32_t kAccSynchronized = 0x0020; // method (only allowed on natives) |
| 30 | static constexpr uint32_t kAccSuper = 0x0020; // class (not used in dex) |
| 31 | static constexpr uint32_t kAccVolatile = 0x0040; // field |
| 32 | static constexpr uint32_t kAccBridge = 0x0040; // method (1.5) |
| 33 | static constexpr uint32_t kAccTransient = 0x0080; // field |
| 34 | static constexpr uint32_t kAccVarargs = 0x0080; // method (1.5) |
| 35 | static constexpr uint32_t kAccNative = 0x0100; // method |
| 36 | static constexpr uint32_t kAccInterface = 0x0200; // class, ic |
| 37 | static constexpr uint32_t kAccAbstract = 0x0400; // class, method, ic |
| 38 | static constexpr uint32_t kAccStrict = 0x0800; // method |
| 39 | static constexpr uint32_t kAccSynthetic = 0x1000; // class, field, method, ic |
| 40 | static constexpr uint32_t kAccAnnotation = 0x2000; // class, ic (1.5) |
| 41 | static constexpr uint32_t kAccEnum = 0x4000; // class, field, ic (1.5) |
| Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 42 | |
| Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 43 | static constexpr uint32_t kAccJavaFlagsMask = 0xffff; // bits set from Java sources (low 16) |
| Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 44 | |
| Igor Murashkin | df707e4 | 2016-02-02 16:56:50 -0800 | [diff] [blame] | 45 | static constexpr uint32_t kAccConstructor = 0x00010000; // method (dex only) <(cl)init> |
| 46 | static constexpr uint32_t kAccDeclaredSynchronized = 0x00020000; // method (dex only) |
| 47 | static constexpr uint32_t kAccClassIsProxy = 0x00040000; // class (dex only) |
| Alex Light | 7532d58 | 2017-02-13 16:36:06 -0800 | [diff] [blame] | 48 | // Set to indicate that the ArtMethod is obsolete and has a different DexCache + DexFile from its |
| 49 | // declaring class. This flag may only be applied to methods. |
| 50 | static constexpr uint32_t kAccObsoleteMethod = 0x00040000; // method (runtime) |
| Igor Murashkin | df707e4 | 2016-02-02 16:56:50 -0800 | [diff] [blame] | 51 | // Used by a method to denote that its execution does not need to go through slow path interpreter. |
| Vladimir Marko | b0a6aee | 2017-10-27 10:34:04 +0100 | [diff] [blame] | 52 | static constexpr uint32_t kAccSkipAccessChecks = 0x00080000; // method (runtime, not native) |
| Igor Murashkin | df707e4 | 2016-02-02 16:56:50 -0800 | [diff] [blame] | 53 | // Used by a class to denote that the verifier has attempted to check it at least once. |
| 54 | static constexpr uint32_t kAccVerificationAttempted = 0x00080000; // class (runtime) |
| David Brazdil | 8586569 | 2018-10-30 17:26:20 +0000 | [diff] [blame] | 55 | static constexpr uint32_t kAccSkipHiddenapiChecks = 0x00100000; // class (runtime) |
| Alex Light | 7ead0c0 | 2016-02-22 13:43:29 -0800 | [diff] [blame] | 56 | // This is set by the class linker during LinkInterfaceMethods. It is used by a method to represent |
| 57 | // that it was copied from its declaring class into another class. All methods marked kAccMiranda |
| 58 | // and kAccDefaultConflict will have this bit set. Any kAccDefault method contained in the methods_ |
| 59 | // array of a concrete class will also have this bit set. |
| 60 | static constexpr uint32_t kAccCopied = 0x00100000; // method (runtime) |
| Vladimir Marko | b0a6aee | 2017-10-27 10:34:04 +0100 | [diff] [blame] | 61 | static constexpr uint32_t kAccMiranda = 0x00200000; // method (runtime, not native) |
| Igor Murashkin | df707e4 | 2016-02-02 16:56:50 -0800 | [diff] [blame] | 62 | static constexpr uint32_t kAccDefault = 0x00400000; // method (runtime) |
| Vladimir Marko | b0a6aee | 2017-10-27 10:34:04 +0100 | [diff] [blame] | 63 | // Native method flags are set when linking the methods based on the presence of the |
| 64 | // @dalvik.annotation.optimization.{Fast,Critical}Native annotations with build visibility. |
| 65 | // Reuse the values of kAccSkipAccessChecks and kAccMiranda which are not used for native methods. |
| 66 | static constexpr uint32_t kAccFastNative = 0x00080000; // method (runtime; native only) |
| 67 | static constexpr uint32_t kAccCriticalNative = 0x00200000; // method (runtime; native only) |
| Mathieu Chartier | f044c22 | 2017-05-31 15:27:54 -0700 | [diff] [blame] | 68 | |
| 69 | // Set by the JIT when clearing profiling infos to denote that a method was previously warm. |
| 70 | static constexpr uint32_t kAccPreviouslyWarm = 0x00800000; // method (runtime) |
| 71 | |
| Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 72 | // This is set by the class linker during LinkInterfaceMethods. Prior to that point we do not know |
| 73 | // if any particular method needs to be a default conflict. Used to figure out at runtime if |
| 74 | // invoking this method will throw an exception. |
| Mathieu Chartier | f044c22 | 2017-05-31 15:27:54 -0700 | [diff] [blame] | 75 | static constexpr uint32_t kAccDefaultConflict = 0x01000000; // method (runtime) |
| Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 76 | |
| Nicolas Geoffray | 62e631a | 2016-04-20 16:27:53 +0100 | [diff] [blame] | 77 | // Set by the verifier for a method we do not want the compiler to compile. |
| Mathieu Chartier | f044c22 | 2017-05-31 15:27:54 -0700 | [diff] [blame] | 78 | static constexpr uint32_t kAccCompileDontBother = 0x02000000; // method (runtime) |
| Andreas Gampe | f517e28 | 2016-04-28 14:56:54 -0700 | [diff] [blame] | 79 | |
| 80 | // Set by the verifier for a method that could not be verified to follow structured locking. |
| Mathieu Chartier | f044c22 | 2017-05-31 15:27:54 -0700 | [diff] [blame] | 81 | static constexpr uint32_t kAccMustCountLocks = 0x04000000; // method (runtime) |
| Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 82 | |
| 83 | // Set by the class linker for a method that has only one implementation for a |
| 84 | // virtual call. |
| 85 | static constexpr uint32_t kAccSingleImplementation = 0x08000000; // method (runtime) |
| 86 | |
| David Brazdil | 8586569 | 2018-10-30 17:26:20 +0000 | [diff] [blame] | 87 | static constexpr uint32_t kAccPublicApi = 0x10000000; // field, method |
| David Brazdil | 90faceb | 2018-12-14 14:36:15 +0000 | [diff] [blame] | 88 | static constexpr uint32_t kAccCorePlatformApi = 0x20000000; // field, method |
| David Brazdil | f6a8a55 | 2018-01-15 18:10:50 +0000 | [diff] [blame] | 89 | |
| David Srbecky | 9581e61 | 2018-10-30 14:29:43 +0000 | [diff] [blame] | 90 | // Non-intrinsics: Caches whether we can use fast-path in the interpreter invokes. |
| 91 | // Intrinsics: These bits are part of the intrinsic ordinal. |
| 92 | static constexpr uint32_t kAccFastInterpreterToInterpreterInvoke = 0x40000000; // method. |
| Orion Hodson | cfcc9cf | 2017-09-29 15:07:27 +0100 | [diff] [blame] | 93 | |
| 94 | // Set by the compiler driver when compiling boot classes with instrinsic methods. |
| Nicolas Geoffray | 762869d | 2016-07-15 15:28:35 +0100 | [diff] [blame] | 95 | static constexpr uint32_t kAccIntrinsic = 0x80000000; // method (runtime) |
| Nicolas Geoffray | 62e631a | 2016-04-20 16:27:53 +0100 | [diff] [blame] | 96 | |
| Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 97 | // Special runtime-only flags. |
| Alex Light | eb7c144 | 2015-08-31 13:17:42 -0700 | [diff] [blame] | 98 | // Interface and all its super-interfaces with default methods have been recursively initialized. |
| 99 | static constexpr uint32_t kAccRecursivelyInitialized = 0x20000000; |
| 100 | // Interface declares some default method. |
| 101 | static constexpr uint32_t kAccHasDefaultMethod = 0x40000000; |
| Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 102 | // class/ancestor overrides finalize() |
| 103 | static constexpr uint32_t kAccClassIsFinalizable = 0x80000000; |
| Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 104 | |
| David Brazdil | 90faceb | 2018-12-14 14:36:15 +0000 | [diff] [blame] | 105 | static constexpr uint32_t kAccHiddenapiBits = kAccPublicApi | kAccCorePlatformApi; |
| 106 | |
| Orion Hodson | cfcc9cf | 2017-09-29 15:07:27 +0100 | [diff] [blame] | 107 | // Continuous sequence of bits used to hold the ordinal of an intrinsic method. Flags |
| 108 | // which overlap are not valid when kAccIntrinsic is set. |
| David Brazdil | 8586569 | 2018-10-30 17:26:20 +0000 | [diff] [blame] | 109 | static constexpr uint32_t kAccIntrinsicBits = kAccHiddenapiBits | |
| David Brazdil | f6a8a55 | 2018-01-15 18:10:50 +0000 | [diff] [blame] | 110 | kAccSingleImplementation | kAccMustCountLocks | kAccCompileDontBother | kAccDefaultConflict | |
| David Srbecky | 9581e61 | 2018-10-30 14:29:43 +0000 | [diff] [blame] | 111 | kAccPreviouslyWarm | kAccFastInterpreterToInterpreterInvoke; |
| Nicolas Geoffray | 762869d | 2016-07-15 15:28:35 +0100 | [diff] [blame] | 112 | |
| Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 113 | // Valid (meaningful) bits for a field. |
| 114 | static constexpr uint32_t kAccValidFieldFlags = kAccPublic | kAccPrivate | kAccProtected | |
| 115 | kAccStatic | kAccFinal | kAccVolatile | kAccTransient | kAccSynthetic | kAccEnum; |
| 116 | |
| 117 | // Valid (meaningful) bits for a method. |
| 118 | static constexpr uint32_t kAccValidMethodFlags = kAccPublic | kAccPrivate | kAccProtected | |
| 119 | kAccStatic | kAccFinal | kAccSynchronized | kAccBridge | kAccVarargs | kAccNative | |
| Vladimir Marko | b0a6aee | 2017-10-27 10:34:04 +0100 | [diff] [blame] | 120 | kAccAbstract | kAccStrict | kAccSynthetic | kAccConstructor | kAccDeclaredSynchronized; |
| 121 | static_assert(((kAccIntrinsic | kAccIntrinsicBits) & kAccValidMethodFlags) == 0, |
| 122 | "Intrinsic bits and valid dex file method access flags must not overlap."); |
| Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 123 | |
| 124 | // Valid (meaningful) bits for a class (not interface). |
| 125 | // Note 1. These are positive bits. Other bits may have to be zero. |
| 126 | // Note 2. Inner classes can expose more access flags to Java programs. That is handled by libcore. |
| 127 | static constexpr uint32_t kAccValidClassFlags = kAccPublic | kAccFinal | kAccSuper | |
| 128 | kAccAbstract | kAccSynthetic | kAccEnum; |
| 129 | |
| 130 | // Valid (meaningful) bits for an interface. |
| 131 | // Note 1. Annotations are interfaces. |
| 132 | // Note 2. These are positive bits. Other bits may have to be zero. |
| 133 | // Note 3. Inner classes can expose more access flags to Java programs. That is handled by libcore. |
| 134 | static constexpr uint32_t kAccValidInterfaceFlags = kAccPublic | kAccInterface | |
| 135 | kAccAbstract | kAccSynthetic | kAccAnnotation; |
| Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 136 | |
| David Brazdil | 2b9c35b | 2018-01-12 15:44:43 +0000 | [diff] [blame] | 137 | static constexpr uint32_t kAccVisibilityFlags = kAccPublic | kAccPrivate | kAccProtected; |
| 138 | |
| David Sehr | 8c0961f | 2018-01-23 16:11:38 -0800 | [diff] [blame] | 139 | // Returns a human-readable version of the Java part of the access flags, e.g., "private static " |
| 140 | // (note the trailing whitespace). |
| 141 | std::string PrettyJavaAccessFlags(uint32_t access_flags); |
| 142 | |
| Mathieu Chartier | 52a7f5c | 2015-08-18 18:35:52 -0700 | [diff] [blame] | 143 | } // namespace art |
| 144 | |
| David Sehr | 334b9d7 | 2018-02-12 18:27:56 -0800 | [diff] [blame] | 145 | #endif // ART_LIBDEXFILE_DEX_MODIFIERS_H_ |
| Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 146 | |