hotspot/src/share/vm/utilities/accessFlags.hpp
changeset 16689 efce070b8d42
parent 15591 b8aa0577f137
child 19770 7cb9f982ea81
--- a/hotspot/src/share/vm/utilities/accessFlags.hpp	Mon Apr 08 07:40:08 2013 -0700
+++ b/hotspot/src/share/vm/utilities/accessFlags.hpp	Tue Apr 09 09:54:17 2013 -0700
@@ -194,6 +194,9 @@
   void set_is_obsolete()               { atomic_set_bits(JVM_ACC_IS_OBSOLETE);             }
   void set_is_prefixed_native()        { atomic_set_bits(JVM_ACC_IS_PREFIXED_NATIVE);      }
 
+  void clear_not_c1_compilable()       { atomic_clear_bits(JVM_ACC_NOT_C1_COMPILABLE);       }
+  void clear_not_c2_compilable()       { atomic_clear_bits(JVM_ACC_NOT_C2_COMPILABLE);       }
+  void clear_not_c2_osr_compilable()   { atomic_clear_bits(JVM_ACC_NOT_C2_OSR_COMPILABLE);   }
   // Klass* flags
   void set_has_vanilla_constructor()   { atomic_set_bits(JVM_ACC_HAS_VANILLA_CONSTRUCTOR); }
   void set_has_finalizer()             { atomic_set_bits(JVM_ACC_HAS_FINALIZER);           }