hotspot/src/share/vm/utilities/accessFlags.hpp
author jrose
Wed, 08 Apr 2009 10:56:49 -0700
changeset 2534 08dac9ce0cd7
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6655638: dynamic languages need method handles Summary: initial implementation, with known omissions (x86/64, sparc, compiler optim., c-oops, C++ interp.) Reviewed-by: kvn, twisti, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
     2
 * Copyright 1997-2009 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// AccessFlags is an abstraction over Java access flags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  // See jvm.h for shared JVM_ACC_XXX access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  // HotSpot-specific access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  // flags actually put in .class file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  JVM_ACC_WRITTEN_FLAGS           = 0x00007FFF,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // methodOop flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  JVM_ACC_MONITOR_MATCH           = 0x10000000,     // True if we know that monitorenter/monitorexit bytecodes match
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  JVM_ACC_HAS_MONITOR_BYTECODES   = 0x20000000,     // Method contains monitorenter/monitorexit bytecodes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  JVM_ACC_HAS_LOOPS               = 0x40000000,     // Method has loops
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  JVM_ACC_LOOPS_FLAG_INIT         = (int)0x80000000,// The loop flag has been initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  JVM_ACC_QUEUED                  = 0x01000000,     // Queued for compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  JVM_ACC_NOT_TIER1_COMPILABLE    = 0x04000000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  JVM_ACC_NOT_OSR_COMPILABLE      = 0x08000000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  JVM_ACC_HAS_LINE_NUMBER_TABLE   = 0x00100000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  JVM_ACC_HAS_CHECKED_EXCEPTIONS  = 0x00400000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  JVM_ACC_HAS_JSRS                = 0x00800000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  JVM_ACC_IS_OLD                  = 0x00010000,     // RedefineClasses() has replaced this method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  JVM_ACC_IS_OBSOLETE             = 0x00020000,     // RedefineClasses() has made method obsolete
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  JVM_ACC_IS_PREFIXED_NATIVE      = 0x00040000,     // JVMTI has prefixed this native method
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
    50
  JVM_MH_INVOKE_BITS           // = 0x10001100      // MethodHandle.invoke quasi-native
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
    51
                                  = (JVM_ACC_NATIVE | JVM_ACC_SYNTHETIC | JVM_ACC_MONITOR_MATCH),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // klassOop flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  JVM_ACC_HAS_MIRANDA_METHODS     = 0x10000000,     // True if this class has miranda methods in it's vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  JVM_ACC_HAS_VANILLA_CONSTRUCTOR = 0x20000000,     // True if klass has a vanilla default constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  JVM_ACC_HAS_FINALIZER           = 0x40000000,     // True if klass has a non-empty finalize() method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  JVM_ACC_IS_CLONEABLE            = (int)0x80000000,// True if klass supports the Clonable interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  JVM_ACC_HAS_FINAL_METHOD        = 0x01000000,     // True if klass has final method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // klassOop and methodOop flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  JVM_ACC_HAS_LOCAL_VARIABLE_TABLE= 0x00200000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  JVM_ACC_PROMOTED_FLAGS          = 0x00200000,     // flags promoted from methods to the holding klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // field flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Note: these flags must be defined in the low order 16 bits because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // instanceKlass only stores a ushort worth of information from the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // AccessFlags value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // These bits must not conflict with any other field-related access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // (e.g., ACC_ENUM).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // Note that the class-related ACC_ANNOTATION bit conflicts with these flags.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  JVM_ACC_FIELD_ACCESS_WATCHED       = 0x00002000,  // field access is watched by JVMTI
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  JVM_ACC_FIELD_MODIFICATION_WATCHED = 0x00008000,  // field modification is watched by JVMTI
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
                                                    // flags accepted by set_field_flags()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  JVM_ACC_FIELD_FLAGS                = 0x00008000 | JVM_ACC_WRITTEN_FLAGS
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
    77
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
class AccessFlags VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  jint _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // Java access flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  bool is_public      () const         { return (_flags & JVM_ACC_PUBLIC      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  bool is_private     () const         { return (_flags & JVM_ACC_PRIVATE     ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  bool is_protected   () const         { return (_flags & JVM_ACC_PROTECTED   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  bool is_static      () const         { return (_flags & JVM_ACC_STATIC      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  bool is_final       () const         { return (_flags & JVM_ACC_FINAL       ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  bool is_synchronized() const         { return (_flags & JVM_ACC_SYNCHRONIZED) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  bool is_super       () const         { return (_flags & JVM_ACC_SUPER       ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  bool is_volatile    () const         { return (_flags & JVM_ACC_VOLATILE    ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  bool is_transient   () const         { return (_flags & JVM_ACC_TRANSIENT   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  bool is_native      () const         { return (_flags & JVM_ACC_NATIVE      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  bool is_interface   () const         { return (_flags & JVM_ACC_INTERFACE   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  bool is_abstract    () const         { return (_flags & JVM_ACC_ABSTRACT    ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  bool is_strict      () const         { return (_flags & JVM_ACC_STRICT      ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // Attribute flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  bool is_synthetic   () const         { return (_flags & JVM_ACC_SYNTHETIC   ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // methodOop flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  bool is_monitor_matching     () const { return (_flags & JVM_ACC_MONITOR_MATCH          ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  bool has_monitor_bytecodes   () const { return (_flags & JVM_ACC_HAS_MONITOR_BYTECODES  ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  bool has_loops               () const { return (_flags & JVM_ACC_HAS_LOOPS              ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  bool loops_flag_init         () const { return (_flags & JVM_ACC_LOOPS_FLAG_INIT        ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  bool queued_for_compilation  () const { return (_flags & JVM_ACC_QUEUED                 ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  bool is_not_tier1_compilable  () const { return (_flags & JVM_ACC_NOT_TIER1_COMPILABLE  ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  bool is_not_osr_compilable   () const { return (_flags & JVM_ACC_NOT_OSR_COMPILABLE     ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  bool has_linenumber_table    () const { return (_flags & JVM_ACC_HAS_LINE_NUMBER_TABLE  ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  bool has_checked_exceptions  () const { return (_flags & JVM_ACC_HAS_CHECKED_EXCEPTIONS ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  bool has_jsrs                () const { return (_flags & JVM_ACC_HAS_JSRS               ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  bool is_old                  () const { return (_flags & JVM_ACC_IS_OLD                 ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  bool is_obsolete             () const { return (_flags & JVM_ACC_IS_OBSOLETE            ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  bool is_prefixed_native      () const { return (_flags & JVM_ACC_IS_PREFIXED_NATIVE     ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   120
  // JSR 292:  A method of the form MethodHandle.invoke(A...)R method is
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   121
  // neither bytecoded nor a JNI native, but rather a fast call through
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   122
  // a lightweight method handle object.  Because it is not bytecoded,
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   123
  // it has the native bit set, but the monitor-match bit is also set
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   124
  // to distinguish it from a JNI native (which never has the match bit set).
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   125
  // The synthetic bit is also present, because such a method is never
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   126
  // explicitly defined in Java code.
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   127
  bool is_method_handle_invoke () const { return (_flags & JVM_MH_INVOKE_BITS) == JVM_MH_INVOKE_BITS; }
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   128
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // klassOop flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  bool has_miranda_methods     () const { return (_flags & JVM_ACC_HAS_MIRANDA_METHODS    ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  bool has_vanilla_constructor () const { return (_flags & JVM_ACC_HAS_VANILLA_CONSTRUCTOR) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  bool has_finalizer           () const { return (_flags & JVM_ACC_HAS_FINALIZER          ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  bool has_final_method        () const { return (_flags & JVM_ACC_HAS_FINAL_METHOD       ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  bool is_cloneable            () const { return (_flags & JVM_ACC_IS_CLONEABLE           ) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // klassOop and methodOop flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  bool has_localvariable_table () const { return (_flags & JVM_ACC_HAS_LOCAL_VARIABLE_TABLE) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  void set_has_localvariable_table()    { atomic_set_bits(JVM_ACC_HAS_LOCAL_VARIABLE_TABLE); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  void clear_has_localvariable_table()  { atomic_clear_bits(JVM_ACC_HAS_LOCAL_VARIABLE_TABLE); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // field flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  bool is_field_access_watched() const  { return (_flags & JVM_ACC_FIELD_ACCESS_WATCHED) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  bool is_field_modification_watched() const
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
                                        { return (_flags & JVM_ACC_FIELD_MODIFICATION_WATCHED) != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // get .class file flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  jint get_flags               () const { return (_flags & JVM_ACC_WRITTEN_FLAGS); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  void add_promoted_flags(jint flags)   { _flags |= (flags & JVM_ACC_PROMOTED_FLAGS); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  void set_field_flags(jint flags)      { _flags = (flags & JVM_ACC_FIELD_FLAGS); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  void set_flags(jint flags)            { _flags = (flags & JVM_ACC_WRITTEN_FLAGS); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  void set_queued_for_compilation()    { atomic_set_bits(JVM_ACC_QUEUED); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  void clear_queued_for_compilation()  { atomic_clear_bits(JVM_ACC_QUEUED); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // Atomic update of flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  void atomic_set_bits(jint bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  void atomic_clear_bits(jint bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  friend class methodOopDesc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  friend class Klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  friend class ClassFileParser;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // the functions below should only be called on the _access_flags inst var directly,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // otherwise they are just changing a copy of the flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // attribute flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  void set_is_synthetic()              { atomic_set_bits(JVM_ACC_SYNTHETIC);               }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // methodOop flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  void set_monitor_matching()          { atomic_set_bits(JVM_ACC_MONITOR_MATCH);           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  void set_has_monitor_bytecodes()     { atomic_set_bits(JVM_ACC_HAS_MONITOR_BYTECODES);   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  void set_has_loops()                 { atomic_set_bits(JVM_ACC_HAS_LOOPS);               }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  void set_loops_flag_init()           { atomic_set_bits(JVM_ACC_LOOPS_FLAG_INIT);         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  void set_not_tier1_compilable()      { atomic_set_bits(JVM_ACC_NOT_TIER1_COMPILABLE);    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void set_not_osr_compilable()        { atomic_set_bits(JVM_ACC_NOT_OSR_COMPILABLE);      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  void set_has_linenumber_table()      { atomic_set_bits(JVM_ACC_HAS_LINE_NUMBER_TABLE);   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  void set_has_checked_exceptions()    { atomic_set_bits(JVM_ACC_HAS_CHECKED_EXCEPTIONS);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  void set_has_jsrs()                  { atomic_set_bits(JVM_ACC_HAS_JSRS);                }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  void set_is_old()                    { atomic_set_bits(JVM_ACC_IS_OLD);                  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  void set_is_obsolete()               { atomic_set_bits(JVM_ACC_IS_OBSOLETE);             }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  void set_is_prefixed_native()        { atomic_set_bits(JVM_ACC_IS_PREFIXED_NATIVE);      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // klassOop flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void set_has_vanilla_constructor()   { atomic_set_bits(JVM_ACC_HAS_VANILLA_CONSTRUCTOR); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  void set_has_finalizer()             { atomic_set_bits(JVM_ACC_HAS_FINALIZER);           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  void set_has_final_method()          { atomic_set_bits(JVM_ACC_HAS_FINAL_METHOD);        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  void set_is_cloneable()              { atomic_set_bits(JVM_ACC_IS_CLONEABLE);            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void set_has_miranda_methods()       { atomic_set_bits(JVM_ACC_HAS_MIRANDA_METHODS);     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // field flags
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  void set_is_field_access_watched(const bool value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
                                       {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
                                         if (value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
                                           atomic_set_bits(JVM_ACC_FIELD_ACCESS_WATCHED);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
                                         } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
                                           atomic_clear_bits(JVM_ACC_FIELD_ACCESS_WATCHED);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
                                         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
                                       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  void set_is_field_modification_watched(const bool value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
                                       {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
                                         if (value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
                                           atomic_set_bits(JVM_ACC_FIELD_MODIFICATION_WATCHED);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
                                         } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
                                           atomic_clear_bits(JVM_ACC_FIELD_MODIFICATION_WATCHED);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
                                         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
                                       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // Conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  jshort as_short()                    { return (jshort)_flags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  jint   as_int()                      { return _flags; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   214
  inline friend AccessFlags accessFlags_from(jint flags);
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   215
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // Printing/debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  void print_on(outputStream* st) const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
};
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   219
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   220
inline AccessFlags accessFlags_from(jint flags) {
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   221
  AccessFlags af;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   222
  af._flags = flags;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   223
  return af;
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 1
diff changeset
   224
}