blob: 9b61ee0cf030b818f75635f8a6a632a14b021463 [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
Ian Rogers08f753d2012-08-24 14:35:25 -070022static const uint32_t kAccPublic = 0x0001; // class, field, method, ic
23static const uint32_t kAccPrivate = 0x0002; // field, method, ic
24static const uint32_t kAccProtected = 0x0004; // field, method, ic
25static const uint32_t kAccStatic = 0x0008; // field, method, ic
26static const uint32_t kAccFinal = 0x0010; // class, field, method, ic
27static const uint32_t kAccSynchronized = 0x0020; // method (only allowed on natives)
28static const uint32_t kAccSuper = 0x0020; // class (not used in dex)
29static const uint32_t kAccVolatile = 0x0040; // field
30static const uint32_t kAccBridge = 0x0040; // method (1.5)
31static const uint32_t kAccTransient = 0x0080; // field
32static const uint32_t kAccVarargs = 0x0080; // method (1.5)
33static const uint32_t kAccNative = 0x0100; // method
34static const uint32_t kAccInterface = 0x0200; // class, ic
35static const uint32_t kAccAbstract = 0x0400; // class, method, ic
36static const uint32_t kAccStrict = 0x0800; // method
37static const uint32_t kAccSynthetic = 0x1000; // field, method, ic
38static const uint32_t kAccAnnotation = 0x2000; // class, ic (1.5)
39static const uint32_t kAccEnum = 0x4000; // class, field, ic (1.5)
40
41static const uint32_t kAccMiranda = 0x8000; // method
42
43static const uint32_t kAccJavaFlagsMask = 0xffff; // bits set from Java sources (low 16)
44
Ian Rogersa1827042013-04-18 16:36:43 -070045static const uint32_t kAccConstructor = 0x00010000; // method (dex only) <init> and <clinit>
Ian Rogers08f753d2012-08-24 14:35:25 -070046static const uint32_t kAccDeclaredSynchronized = 0x00020000; // method (dex only)
47static const uint32_t kAccClassIsProxy = 0x00040000; // class (dex only)
mikaelpeltier6ffd0962012-10-25 15:37:45 +020048// TODO: JACK CLASS ACCESS (HACK TO BE REMOVED)
Sebastien Hertz233ea8e2013-06-06 11:57:09 +020049static const uint32_t kAccClassJack = 0x00080000; // class (dex only)
50
51static const uint32_t kAccPreverified = 0x00100000; // method (dex only)
Ian Rogers08f753d2012-08-24 14:35:25 -070052
53// Special runtime-only flags.
54// Note: if only kAccClassIsReference is set, we have a soft reference.
55static const uint32_t kAccClassIsFinalizable = 0x80000000; // class/ancestor overrides finalize()
56static const uint32_t kAccClassIsReference = 0x08000000; // class is a soft/weak/phantom ref
57static const uint32_t kAccClassIsWeakReference = 0x04000000; // class is a weak reference
58static const uint32_t kAccClassIsFinalizerReference = 0x02000000; // class is a finalizer reference
59static const uint32_t kAccClassIsPhantomReference = 0x01000000; // class is a phantom reference
60
61static const uint32_t kAccReferenceFlagsMask = (kAccClassIsReference
62 | kAccClassIsWeakReference
63 | kAccClassIsFinalizerReference
64 | kAccClassIsPhantomReference);
65
Brian Carlstromfc0e3212013-07-17 14:40:12 -070066#endif // ART_RUNTIME_MODIFIERS_H_
Ian Rogers08f753d2012-08-24 14:35:25 -070067