src/hotspot/share/utilities/accessFlags.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 49621 5ef28d560b6f
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49621
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2534
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2534
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2534
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49621
diff changeset
    25
#ifndef SHARE_UTILITIES_ACCESSFLAGS_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49621
diff changeset
    26
#define SHARE_UTILITIES_ACCESSFLAGS_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47216
diff changeset
    28
#include "jvm.h"
49621
5ef28d560b6f 8200276: Cleanup allocation.hpp includes
coleenp
parents: 49364
diff changeset
    29
#include "utilities/debug.hpp"
37466
287c4ebd11b0 8153967: Remove top.hpp
stefank
parents: 35544
diff changeset
    30
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// AccessFlags is an abstraction over Java access flags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
49621
5ef28d560b6f 8200276: Cleanup allocation.hpp includes
coleenp
parents: 49364
diff changeset
    34
class outputStream;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // See jvm.h for shared JVM_ACC_XXX access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  // HotSpot-specific access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // flags actually put in .class file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  JVM_ACC_WRITTEN_FLAGS           = 0x00007FFF,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    44
  // Method* flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  JVM_ACC_MONITOR_MATCH           = 0x10000000,     // True if we know that monitorenter/monitorexit bytecodes match
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  JVM_ACC_HAS_MONITOR_BYTECODES   = 0x20000000,     // Method contains monitorenter/monitorexit bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  JVM_ACC_HAS_LOOPS               = 0x40000000,     // Method has loops
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  JVM_ACC_LOOPS_FLAG_INIT         = (int)0x80000000,// The loop flag has been initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  JVM_ACC_QUEUED                  = 0x01000000,     // Queued for compilation
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    50
  JVM_ACC_NOT_C2_COMPILABLE       = 0x02000000,
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    51
  JVM_ACC_NOT_C1_COMPILABLE       = 0x04000000,
13891
35dabd293e56 7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents: 13728
diff changeset
    52
  JVM_ACC_NOT_C2_OSR_COMPILABLE   = 0x08000000,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  JVM_ACC_HAS_LINE_NUMBER_TABLE   = 0x00100000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  JVM_ACC_HAS_CHECKED_EXCEPTIONS  = 0x00400000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  JVM_ACC_HAS_JSRS                = 0x00800000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  JVM_ACC_IS_OLD                  = 0x00010000,     // RedefineClasses() has replaced this method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  JVM_ACC_IS_OBSOLETE             = 0x00020000,     // RedefineClasses() has made method obsolete
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  JVM_ACC_IS_PREFIXED_NATIVE      = 0x00040000,     // JVMTI has prefixed this native method
24459
ebd373039673 8042796: jvmtiRedefineClasses.cpp: guarantee(false) failed: OLD and/or OBSOLETE method(s) found
sspitsyn
parents: 19770
diff changeset
    59
  JVM_ACC_ON_STACK                = 0x00080000,     // RedefineClasses() was used on the stack
ebd373039673 8042796: jvmtiRedefineClasses.cpp: guarantee(false) failed: OLD and/or OBSOLETE method(s) found
sspitsyn
parents: 19770
diff changeset
    60
  JVM_ACC_IS_DELETED              = 0x00008000,     // RedefineClasses() has deleted this method
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
    61
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    62
  // Klass* flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  JVM_ACC_HAS_MIRANDA_METHODS     = 0x10000000,     // True if this class has miranda methods in it's vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  JVM_ACC_HAS_VANILLA_CONSTRUCTOR = 0x20000000,     // True if klass has a vanilla default constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  JVM_ACC_HAS_FINALIZER           = 0x40000000,     // True if klass has a non-empty finalize() method
35544
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    66
  JVM_ACC_IS_CLONEABLE_FAST       = (int)0x80000000,// True if klass implements the Cloneable interface and can be optimized in generated code
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  JVM_ACC_HAS_FINAL_METHOD        = 0x01000000,     // True if klass has final method
46413
b0f67ec8f6be 8178543: Optimize Klass::is_shared()
iklam
parents: 39421
diff changeset
    68
  JVM_ACC_IS_SHARED_CLASS         = 0x02000000,     // True if klass is shared
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    70
  // Klass* and Method* flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  JVM_ACC_HAS_LOCAL_VARIABLE_TABLE= 0x00200000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  JVM_ACC_PROMOTED_FLAGS          = 0x00200000,     // flags promoted from methods to the holding klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // field flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Note: these flags must be defined in the low order 16 bits because
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    77
  // InstanceKlass only stores a ushort worth of information from the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // AccessFlags value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // These bits must not conflict with any other field-related access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // (e.g., ACC_ENUM).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // Note that the class-related ACC_ANNOTATION bit conflicts with these flags.
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    82
  JVM_ACC_FIELD_ACCESS_WATCHED            = 0x00002000, // field access is watched by JVMTI
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    83
  JVM_ACC_FIELD_MODIFICATION_WATCHED      = 0x00008000, // field modification is watched by JVMTI
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    84
  JVM_ACC_FIELD_INTERNAL                  = 0x00000400, // internal field, same as JVM_ACC_ABSTRACT
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    85
  JVM_ACC_FIELD_STABLE                    = 0x00000020, // @Stable field, same as JVM_ACC_SYNCHRONIZED and JVM_ACC_SUPER
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    86
  JVM_ACC_FIELD_INITIALIZED_FINAL_UPDATE  = 0x00000100, // (static) final field updated outside (class) initializer, same as JVM_ACC_NATIVE
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
    87
  JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE     = 0x00000800, // field has generic signature
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    88
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    89
  JVM_ACC_FIELD_INTERNAL_FLAGS       = JVM_ACC_FIELD_ACCESS_WATCHED |
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    90
                                       JVM_ACC_FIELD_MODIFICATION_WATCHED |
12772
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    91
                                       JVM_ACC_FIELD_INTERNAL |
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 16689
diff changeset
    92
                                       JVM_ACC_FIELD_STABLE |
12772
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
    93
                                       JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                                                    // flags accepted by set_field_flags()
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
    96
  JVM_ACC_FIELD_FLAGS                = JVM_RECOGNIZED_FIELD_MODIFIERS | JVM_ACC_FIELD_INTERNAL_FLAGS
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
    97
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 47765
diff changeset
   101
class AccessFlags {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  jint _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
 public:
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29576
diff changeset
   107
  AccessFlags() : _flags(0) {}
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29576
diff changeset
   108
  explicit AccessFlags(jint flags) : _flags(flags) {}
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 29576
diff changeset
   109
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // Java access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  bool is_public      () const         { return (_flags & JVM_ACC_PUBLIC      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  bool is_private     () const         { return (_flags & JVM_ACC_PRIVATE     ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  bool is_protected   () const         { return (_flags & JVM_ACC_PROTECTED   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  bool is_static      () const         { return (_flags & JVM_ACC_STATIC      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  bool is_final       () const         { return (_flags & JVM_ACC_FINAL       ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  bool is_synchronized() const         { return (_flags & JVM_ACC_SYNCHRONIZED) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  bool is_super       () const         { return (_flags & JVM_ACC_SUPER       ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  bool is_volatile    () const         { return (_flags & JVM_ACC_VOLATILE    ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  bool is_transient   () const         { return (_flags & JVM_ACC_TRANSIENT   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  bool is_native      () const         { return (_flags & JVM_ACC_NATIVE      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  bool is_interface   () const         { return (_flags & JVM_ACC_INTERFACE   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  bool is_abstract    () const         { return (_flags & JVM_ACC_ABSTRACT    ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  bool is_strict      () const         { return (_flags & JVM_ACC_STRICT      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Attribute flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  bool is_synthetic   () const         { return (_flags & JVM_ACC_SYNTHETIC   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   128
  // Method* flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  bool is_monitor_matching     () const { return (_flags & JVM_ACC_MONITOR_MATCH          ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  bool has_monitor_bytecodes   () const { return (_flags & JVM_ACC_HAS_MONITOR_BYTECODES  ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  bool has_loops               () const { return (_flags & JVM_ACC_HAS_LOOPS              ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  bool loops_flag_init         () const { return (_flags & JVM_ACC_LOOPS_FLAG_INIT        ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  bool queued_for_compilation  () const { return (_flags & JVM_ACC_QUEUED                 ) != 0; }
13891
35dabd293e56 7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents: 13728
diff changeset
   134
  bool is_not_c1_compilable    () const { return (_flags & JVM_ACC_NOT_C1_COMPILABLE      ) != 0; }
35dabd293e56 7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents: 13728
diff changeset
   135
  bool is_not_c2_compilable    () const { return (_flags & JVM_ACC_NOT_C2_COMPILABLE      ) != 0; }
35dabd293e56 7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents: 13728
diff changeset
   136
  bool is_not_c2_osr_compilable() const { return (_flags & JVM_ACC_NOT_C2_OSR_COMPILABLE  ) != 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  bool has_linenumber_table    () const { return (_flags & JVM_ACC_HAS_LINE_NUMBER_TABLE  ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  bool has_checked_exceptions  () const { return (_flags & JVM_ACC_HAS_CHECKED_EXCEPTIONS ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  bool has_jsrs                () const { return (_flags & JVM_ACC_HAS_JSRS               ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  bool is_old                  () const { return (_flags & JVM_ACC_IS_OLD                 ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  bool is_obsolete             () const { return (_flags & JVM_ACC_IS_OBSOLETE            ) != 0; }
24459
ebd373039673 8042796: jvmtiRedefineClasses.cpp: guarantee(false) failed: OLD and/or OBSOLETE method(s) found
sspitsyn
parents: 19770
diff changeset
   142
  bool is_deleted              () const { return (_flags & JVM_ACC_IS_DELETED             ) != 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  bool is_prefixed_native      () const { return (_flags & JVM_ACC_IS_PREFIXED_NATIVE     ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   145
  // Klass* flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  bool has_miranda_methods     () const { return (_flags & JVM_ACC_HAS_MIRANDA_METHODS    ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  bool has_vanilla_constructor () const { return (_flags & JVM_ACC_HAS_VANILLA_CONSTRUCTOR) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  bool has_finalizer           () const { return (_flags & JVM_ACC_HAS_FINALIZER          ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  bool has_final_method        () const { return (_flags & JVM_ACC_HAS_FINAL_METHOD       ) != 0; }
35544
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
   150
  bool is_cloneable_fast       () const { return (_flags & JVM_ACC_IS_CLONEABLE_FAST      ) != 0; }
46413
b0f67ec8f6be 8178543: Optimize Klass::is_shared()
iklam
parents: 39421
diff changeset
   151
  bool is_shared_class         () const { return (_flags & JVM_ACC_IS_SHARED_CLASS        ) != 0; }
b0f67ec8f6be 8178543: Optimize Klass::is_shared()
iklam
parents: 39421
diff changeset
   152
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   153
  // Klass* and Method* flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  bool has_localvariable_table () const { return (_flags & JVM_ACC_HAS_LOCAL_VARIABLE_TABLE) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  void set_has_localvariable_table()    { atomic_set_bits(JVM_ACC_HAS_LOCAL_VARIABLE_TABLE); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  void clear_has_localvariable_table()  { atomic_clear_bits(JVM_ACC_HAS_LOCAL_VARIABLE_TABLE); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // field flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  bool is_field_access_watched() const  { return (_flags & JVM_ACC_FIELD_ACCESS_WATCHED) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  bool is_field_modification_watched() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
                                        { return (_flags & JVM_ACC_FIELD_MODIFICATION_WATCHED) != 0; }
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   162
  bool has_field_initialized_final_update() const
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   163
                                        { return (_flags & JVM_ACC_FIELD_INITIALIZED_FINAL_UPDATE) != 0; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   164
  bool on_stack() const                 { return (_flags & JVM_ACC_ON_STACK) != 0; }
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
   165
  bool is_internal() const              { return (_flags & JVM_ACC_FIELD_INTERNAL) != 0; }
19770
7cb9f982ea81 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 16689
diff changeset
   166
  bool is_stable() const                { return (_flags & JVM_ACC_FIELD_STABLE) != 0; }
12772
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
   167
  bool field_has_generic_signature() const
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
   168
                                        { return (_flags & JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE) != 0; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // get .class file flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  jint get_flags               () const { return (_flags & JVM_ACC_WRITTEN_FLAGS); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  void add_promoted_flags(jint flags)   { _flags |= (flags & JVM_ACC_PROMOTED_FLAGS); }
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
   175
  void set_field_flags(jint flags)      {
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
   176
    assert((flags & JVM_ACC_FIELD_FLAGS) == flags, "only recognized flags");
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
   177
    _flags = (flags & JVM_ACC_FIELD_FLAGS);
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
   178
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  void set_flags(jint flags)            { _flags = (flags & JVM_ACC_WRITTEN_FLAGS); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  void set_queued_for_compilation()    { atomic_set_bits(JVM_ACC_QUEUED); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  void clear_queued_for_compilation()  { atomic_clear_bits(JVM_ACC_QUEUED); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // Atomic update of flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void atomic_set_bits(jint bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  void atomic_clear_bits(jint bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
 private:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   189
  friend class Method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  friend class Klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  friend class ClassFileParser;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // the functions below should only be called on the _access_flags inst var directly,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  // otherwise they are just changing a copy of the flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // attribute flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void set_is_synthetic()              { atomic_set_bits(JVM_ACC_SYNTHETIC);               }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   198
  // Method* flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  void set_monitor_matching()          { atomic_set_bits(JVM_ACC_MONITOR_MATCH);           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  void set_has_monitor_bytecodes()     { atomic_set_bits(JVM_ACC_HAS_MONITOR_BYTECODES);   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  void set_has_loops()                 { atomic_set_bits(JVM_ACC_HAS_LOOPS);               }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  void set_loops_flag_init()           { atomic_set_bits(JVM_ACC_LOOPS_FLAG_INIT);         }
6453
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   203
  void set_not_c1_compilable()         { atomic_set_bits(JVM_ACC_NOT_C1_COMPILABLE);       }
970dc585ab63 6953144: Tiered compilation
iveresov
parents: 5547
diff changeset
   204
  void set_not_c2_compilable()         { atomic_set_bits(JVM_ACC_NOT_C2_COMPILABLE);       }
13891
35dabd293e56 7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents: 13728
diff changeset
   205
  void set_not_c2_osr_compilable()     { atomic_set_bits(JVM_ACC_NOT_C2_OSR_COMPILABLE);   }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  void set_has_linenumber_table()      { atomic_set_bits(JVM_ACC_HAS_LINE_NUMBER_TABLE);   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  void set_has_checked_exceptions()    { atomic_set_bits(JVM_ACC_HAS_CHECKED_EXCEPTIONS);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  void set_has_jsrs()                  { atomic_set_bits(JVM_ACC_HAS_JSRS);                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  void set_is_old()                    { atomic_set_bits(JVM_ACC_IS_OLD);                  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  void set_is_obsolete()               { atomic_set_bits(JVM_ACC_IS_OBSOLETE);             }
24459
ebd373039673 8042796: jvmtiRedefineClasses.cpp: guarantee(false) failed: OLD and/or OBSOLETE method(s) found
sspitsyn
parents: 19770
diff changeset
   211
  void set_is_deleted()                { atomic_set_bits(JVM_ACC_IS_DELETED);              }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  void set_is_prefixed_native()        { atomic_set_bits(JVM_ACC_IS_PREFIXED_NATIVE);      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
16689
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 15591
diff changeset
   214
  void clear_not_c1_compilable()       { atomic_clear_bits(JVM_ACC_NOT_C1_COMPILABLE);       }
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 15591
diff changeset
   215
  void clear_not_c2_compilable()       { atomic_clear_bits(JVM_ACC_NOT_C2_COMPILABLE);       }
efce070b8d42 8007288: Additional WB API for compiler's testing
iignatyev
parents: 15591
diff changeset
   216
  void clear_not_c2_osr_compilable()   { atomic_clear_bits(JVM_ACC_NOT_C2_OSR_COMPILABLE);   }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   217
  // Klass* flags
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  void set_has_vanilla_constructor()   { atomic_set_bits(JVM_ACC_HAS_VANILLA_CONSTRUCTOR); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  void set_has_finalizer()             { atomic_set_bits(JVM_ACC_HAS_FINALIZER);           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  void set_has_final_method()          { atomic_set_bits(JVM_ACC_HAS_FINAL_METHOD);        }
35544
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
   221
  void set_is_cloneable_fast()         { atomic_set_bits(JVM_ACC_IS_CLONEABLE_FAST);       }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  void set_has_miranda_methods()       { atomic_set_bits(JVM_ACC_HAS_MIRANDA_METHODS);     }
46413
b0f67ec8f6be 8178543: Optimize Klass::is_shared()
iklam
parents: 39421
diff changeset
   223
  void set_is_shared_class()           { atomic_set_bits(JVM_ACC_IS_SHARED_CLASS);         }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // field flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  void set_is_field_access_watched(const bool value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
                                       {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
                                         if (value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
                                           atomic_set_bits(JVM_ACC_FIELD_ACCESS_WATCHED);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
                                         } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
                                           atomic_clear_bits(JVM_ACC_FIELD_ACCESS_WATCHED);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
                                         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
                                       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  void set_is_field_modification_watched(const bool value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
                                       {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
                                         if (value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
                                           atomic_set_bits(JVM_ACC_FIELD_MODIFICATION_WATCHED);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
                                         } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
                                           atomic_clear_bits(JVM_ACC_FIELD_MODIFICATION_WATCHED);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
                                         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
                                       }
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   243
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   244
  void set_has_field_initialized_final_update(const bool value) {
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   245
    if (value) {
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   246
      atomic_set_bits(JVM_ACC_FIELD_INITIALIZED_FINAL_UPDATE);
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   247
    } else {
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   248
      atomic_clear_bits(JVM_ACC_FIELD_INITIALIZED_FINAL_UPDATE);
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   249
    }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   250
  }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 37466
diff changeset
   251
12772
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
   252
  void set_field_has_generic_signature()
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
   253
                                       {
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
   254
                                         atomic_set_bits(JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE);
d317e5e08194 7168280: Eliminate the generic signature index slot from field array for field without generic signature.
jiangli
parents: 10546
diff changeset
   255
                                       }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
29576
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 27247
diff changeset
   257
  void set_on_stack(const bool value)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   258
                                       {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   259
                                         if (value) {
29576
c223b0a9872e 8061205: MetadataOnStackMark only needs to walk code cache during class redefinition
coleenp
parents: 27247
diff changeset
   260
                                           atomic_set_bits(JVM_ACC_ON_STACK);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   261
                                         } else {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   262
                                           atomic_clear_bits(JVM_ACC_ON_STACK);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   263
                                         }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   264
                                       }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // Conversion
10546
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
   266
  jshort as_short() const              { return (jshort)_flags; }
e79347eebbc5 7086585: make Java field injection more flexible
never
parents: 7397
diff changeset
   267
  jint   as_int() const                { return _flags; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   269
  inline friend AccessFlags accessFlags_from(jint flags);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   270
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // Printing/debugging
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 13891
diff changeset
   272
#if INCLUDE_JVMTI
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 13891
diff changeset
   273
  void print_on(outputStream* st) const;
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 13891
diff changeset
   274
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  void print_on(outputStream* st) const PRODUCT_RETURN;
15591
b8aa0577f137 7182152: Instrumentation hot swap test incorrect monitor count
dcubed
parents: 13891
diff changeset
   276
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
};
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   278
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   279
inline AccessFlags accessFlags_from(jint flags) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   280
  AccessFlags af;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   281
  af._flags = flags;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   282
  return af;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   283
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
   284
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49621
diff changeset
   285
#endif // SHARE_UTILITIES_ACCESSFLAGS_HPP