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 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_MODIFIERS_H_ |
| 18 | #define ART_RUNTIME_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 | |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 22 | static constexpr uint32_t kAccPublic = 0x0001; // class, field, method, ic |
| 23 | static constexpr uint32_t kAccPrivate = 0x0002; // field, method, ic |
| 24 | static constexpr uint32_t kAccProtected = 0x0004; // field, method, ic |
| 25 | static constexpr uint32_t kAccStatic = 0x0008; // field, method, ic |
| 26 | static constexpr uint32_t kAccFinal = 0x0010; // class, field, method, ic |
| 27 | static constexpr uint32_t kAccSynchronized = 0x0020; // method (only allowed on natives) |
| 28 | static constexpr uint32_t kAccSuper = 0x0020; // class (not used in dex) |
| 29 | static constexpr uint32_t kAccVolatile = 0x0040; // field |
| 30 | static constexpr uint32_t kAccBridge = 0x0040; // method (1.5) |
| 31 | static constexpr uint32_t kAccTransient = 0x0080; // field |
| 32 | static constexpr uint32_t kAccVarargs = 0x0080; // method (1.5) |
| 33 | static constexpr uint32_t kAccNative = 0x0100; // method |
| 34 | static constexpr uint32_t kAccInterface = 0x0200; // class, ic |
| 35 | static constexpr uint32_t kAccAbstract = 0x0400; // class, method, ic |
| 36 | static constexpr uint32_t kAccStrict = 0x0800; // method |
| 37 | static constexpr uint32_t kAccSynthetic = 0x1000; // class, field, method, ic |
| 38 | static constexpr uint32_t kAccAnnotation = 0x2000; // class, ic (1.5) |
| 39 | static constexpr uint32_t kAccEnum = 0x4000; // class, field, ic (1.5) |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 40 | |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 41 | 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] | 42 | |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 43 | static constexpr uint32_t kAccConstructor = 0x00010000; // method (dex only) <(cl)init> |
| 44 | static constexpr uint32_t kAccDeclaredSynchronized = 0x00020000; // method (dex only) |
| 45 | static constexpr uint32_t kAccClassIsProxy = 0x00040000; // class (dex only) |
| 46 | static constexpr uint32_t kAccPreverified = 0x00080000; // class (runtime), |
| 47 | // method (dex only) |
| 48 | static constexpr uint32_t kAccFastNative = 0x00080000; // method (dex only) |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 49 | static constexpr uint32_t kAccMiranda = 0x00200000; // method (dex only) |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 50 | |
| 51 | // Special runtime-only flags. |
| 52 | // Note: if only kAccClassIsReference is set, we have a soft reference. |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 53 | |
Andreas Gampe | 5182932 | 2014-08-25 15:05:04 -0700 | [diff] [blame] | 54 | // class/ancestor overrides finalize() |
| 55 | static constexpr uint32_t kAccClassIsFinalizable = 0x80000000; |
| 56 | // class is a soft/weak/phantom ref |
| 57 | static constexpr uint32_t kAccClassIsReference = 0x08000000; |
| 58 | // class is a weak reference |
| 59 | static constexpr uint32_t kAccClassIsWeakReference = 0x04000000; |
| 60 | // class is a finalizer reference |
| 61 | static constexpr uint32_t kAccClassIsFinalizerReference = 0x02000000; |
| 62 | // class is a phantom reference |
| 63 | static constexpr uint32_t kAccClassIsPhantomReference = 0x01000000; |
| 64 | |
| 65 | static constexpr uint32_t kAccReferenceFlagsMask = (kAccClassIsReference |
| 66 | | kAccClassIsWeakReference |
| 67 | | kAccClassIsFinalizerReference |
| 68 | | kAccClassIsPhantomReference); |
| 69 | |
| 70 | // Valid (meaningful) bits for a field. |
| 71 | static constexpr uint32_t kAccValidFieldFlags = kAccPublic | kAccPrivate | kAccProtected | |
| 72 | kAccStatic | kAccFinal | kAccVolatile | kAccTransient | kAccSynthetic | kAccEnum; |
| 73 | |
| 74 | // Valid (meaningful) bits for a method. |
| 75 | static constexpr uint32_t kAccValidMethodFlags = kAccPublic | kAccPrivate | kAccProtected | |
| 76 | kAccStatic | kAccFinal | kAccSynchronized | kAccBridge | kAccVarargs | kAccNative | |
| 77 | kAccAbstract | kAccStrict | kAccSynthetic | kAccMiranda | kAccConstructor | |
| 78 | kAccDeclaredSynchronized; |
| 79 | |
| 80 | // Valid (meaningful) bits for a class (not interface). |
| 81 | // Note 1. These are positive bits. Other bits may have to be zero. |
| 82 | // Note 2. Inner classes can expose more access flags to Java programs. That is handled by libcore. |
| 83 | static constexpr uint32_t kAccValidClassFlags = kAccPublic | kAccFinal | kAccSuper | |
| 84 | kAccAbstract | kAccSynthetic | kAccEnum; |
| 85 | |
| 86 | // Valid (meaningful) bits for an interface. |
| 87 | // Note 1. Annotations are interfaces. |
| 88 | // Note 2. These are positive bits. Other bits may have to be zero. |
| 89 | // Note 3. Inner classes can expose more access flags to Java programs. That is handled by libcore. |
| 90 | static constexpr uint32_t kAccValidInterfaceFlags = kAccPublic | kAccInterface | |
| 91 | kAccAbstract | kAccSynthetic | kAccAnnotation; |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 92 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 93 | #endif // ART_RUNTIME_MODIFIERS_H_ |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 94 | |