blob: ae6b31d2fe4741fab9a16fded917bb370464bc31 [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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_MODIFIERS_H_
18#define ART_RUNTIME_MODIFIERS_H_
Ian Rogers08f753d2012-08-24 14:35:25 -070019
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080020#include <stdint.h>
21
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -070022namespace art {
23
Andreas Gampe51829322014-08-25 15:05:04 -070024static constexpr uint32_t kAccPublic = 0x0001; // class, field, method, ic
25static constexpr uint32_t kAccPrivate = 0x0002; // field, method, ic
26static constexpr uint32_t kAccProtected = 0x0004; // field, method, ic
27static constexpr uint32_t kAccStatic = 0x0008; // field, method, ic
28static constexpr uint32_t kAccFinal = 0x0010; // class, field, method, ic
29static constexpr uint32_t kAccSynchronized = 0x0020; // method (only allowed on natives)
30static constexpr uint32_t kAccSuper = 0x0020; // class (not used in dex)
31static constexpr uint32_t kAccVolatile = 0x0040; // field
32static constexpr uint32_t kAccBridge = 0x0040; // method (1.5)
33static constexpr uint32_t kAccTransient = 0x0080; // field
34static constexpr uint32_t kAccVarargs = 0x0080; // method (1.5)
35static constexpr uint32_t kAccNative = 0x0100; // method
36static constexpr uint32_t kAccInterface = 0x0200; // class, ic
37static constexpr uint32_t kAccAbstract = 0x0400; // class, method, ic
38static constexpr uint32_t kAccStrict = 0x0800; // method
39static constexpr uint32_t kAccSynthetic = 0x1000; // class, field, method, ic
40static constexpr uint32_t kAccAnnotation = 0x2000; // class, ic (1.5)
41static constexpr uint32_t kAccEnum = 0x4000; // class, field, ic (1.5)
Ian Rogers08f753d2012-08-24 14:35:25 -070042
Andreas Gampe51829322014-08-25 15:05:04 -070043static constexpr uint32_t kAccJavaFlagsMask = 0xffff; // bits set from Java sources (low 16)
Ian Rogers08f753d2012-08-24 14:35:25 -070044
Igor Murashkindf707e42016-02-02 16:56:50 -080045static constexpr uint32_t kAccConstructor = 0x00010000; // method (dex only) <(cl)init>
46static constexpr uint32_t kAccDeclaredSynchronized = 0x00020000; // method (dex only)
47static constexpr uint32_t kAccClassIsProxy = 0x00040000; // class (dex only)
48// Used by a method to denote that its execution does not need to go through slow path interpreter.
49static constexpr uint32_t kAccSkipAccessChecks = 0x00080000; // method (dex only)
50// Used by a class to denote that the verifier has attempted to check it at least once.
51static constexpr uint32_t kAccVerificationAttempted = 0x00080000; // class (runtime)
52static constexpr uint32_t kAccFastNative = 0x00080000; // method (dex only)
Alex Light7ead0c02016-02-22 13:43:29 -080053// This is set by the class linker during LinkInterfaceMethods. It is used by a method to represent
54// that it was copied from its declaring class into another class. All methods marked kAccMiranda
55// and kAccDefaultConflict will have this bit set. Any kAccDefault method contained in the methods_
56// array of a concrete class will also have this bit set.
57static constexpr uint32_t kAccCopied = 0x00100000; // method (runtime)
Igor Murashkindf707e42016-02-02 16:56:50 -080058static constexpr uint32_t kAccMiranda = 0x00200000; // method (dex only)
59static constexpr uint32_t kAccDefault = 0x00400000; // method (runtime)
Alex Light9139e002015-10-09 15:59:48 -070060// This is set by the class linker during LinkInterfaceMethods. Prior to that point we do not know
61// if any particular method needs to be a default conflict. Used to figure out at runtime if
62// invoking this method will throw an exception.
Andreas Gampef517e282016-04-28 14:56:54 -070063static constexpr uint32_t kAccDefaultConflict = 0x00800000; // method (runtime)
Ian Rogers08f753d2012-08-24 14:35:25 -070064
Nicolas Geoffray62e631a2016-04-20 16:27:53 +010065// Set by the verifier for a method we do not want the compiler to compile.
Andreas Gampef517e282016-04-28 14:56:54 -070066static constexpr uint32_t kAccCompileDontBother = 0x01000000; // method (runtime)
67
68// Set by the verifier for a method that could not be verified to follow structured locking.
69static constexpr uint32_t kAccMustCountLocks = 0x02000000; // method (runtime)
Alex Light0b772572016-12-02 17:27:31 -080070// Set to indicate that the ArtMethod is obsolete and has a different DexCache from its declaring
Alex Lighta01de592016-11-15 10:43:06 -080071// class.
72// TODO Might want to re-arrange some of these so that we can have obsolete + intrinsic methods.
73static constexpr uint32_t kAccObsoleteMethod = 0x04000000; // method (runtime)
Mingyao Yang063fc772016-08-02 11:02:54 -070074
75// Set by the class linker for a method that has only one implementation for a
76// virtual call.
77static constexpr uint32_t kAccSingleImplementation = 0x08000000; // method (runtime)
78
Nicolas Geoffray762869d2016-07-15 15:28:35 +010079static constexpr uint32_t kAccIntrinsic = 0x80000000; // method (runtime)
Nicolas Geoffray62e631a2016-04-20 16:27:53 +010080
Ian Rogers08f753d2012-08-24 14:35:25 -070081// Special runtime-only flags.
Alex Lighteb7c1442015-08-31 13:17:42 -070082// Interface and all its super-interfaces with default methods have been recursively initialized.
83static constexpr uint32_t kAccRecursivelyInitialized = 0x20000000;
84// Interface declares some default method.
85static constexpr uint32_t kAccHasDefaultMethod = 0x40000000;
Andreas Gampe51829322014-08-25 15:05:04 -070086// class/ancestor overrides finalize()
87static constexpr uint32_t kAccClassIsFinalizable = 0x80000000;
Andreas Gampe51829322014-08-25 15:05:04 -070088
Nicolas Geoffray762869d2016-07-15 15:28:35 +010089static constexpr uint32_t kAccFlagsNotUsedByIntrinsic = 0x007FFFFF;
90static constexpr uint32_t kAccMaxIntrinsic = 0xFF;
91
Andreas Gampe51829322014-08-25 15:05:04 -070092// Valid (meaningful) bits for a field.
93static constexpr uint32_t kAccValidFieldFlags = kAccPublic | kAccPrivate | kAccProtected |
94 kAccStatic | kAccFinal | kAccVolatile | kAccTransient | kAccSynthetic | kAccEnum;
95
96// Valid (meaningful) bits for a method.
97static constexpr uint32_t kAccValidMethodFlags = kAccPublic | kAccPrivate | kAccProtected |
98 kAccStatic | kAccFinal | kAccSynchronized | kAccBridge | kAccVarargs | kAccNative |
99 kAccAbstract | kAccStrict | kAccSynthetic | kAccMiranda | kAccConstructor |
100 kAccDeclaredSynchronized;
101
102// Valid (meaningful) bits for a class (not interface).
103// Note 1. These are positive bits. Other bits may have to be zero.
104// Note 2. Inner classes can expose more access flags to Java programs. That is handled by libcore.
105static constexpr uint32_t kAccValidClassFlags = kAccPublic | kAccFinal | kAccSuper |
106 kAccAbstract | kAccSynthetic | kAccEnum;
107
108// Valid (meaningful) bits for an interface.
109// Note 1. Annotations are interfaces.
110// Note 2. These are positive bits. Other bits may have to be zero.
111// Note 3. Inner classes can expose more access flags to Java programs. That is handled by libcore.
112static constexpr uint32_t kAccValidInterfaceFlags = kAccPublic | kAccInterface |
113 kAccAbstract | kAccSynthetic | kAccAnnotation;
Ian Rogers08f753d2012-08-24 14:35:25 -0700114
Mathieu Chartier52a7f5c2015-08-18 18:35:52 -0700115} // namespace art
116
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700117#endif // ART_RUNTIME_MODIFIERS_H_
Ian Rogers08f753d2012-08-24 14:35:25 -0700118