src/share/vm/utilities/accessFlags.hpp

changeset 4111
9191895df19d
parent 4037
da91efe96a93
child 4562
8d9fc28831cc
     1.1 --- a/src/share/vm/utilities/accessFlags.hpp	Mon Sep 24 14:46:06 2012 -0700
     1.2 +++ b/src/share/vm/utilities/accessFlags.hpp	Mon Sep 24 17:59:24 2012 -0700
     1.3 @@ -47,7 +47,7 @@
     1.4    JVM_ACC_QUEUED                  = 0x01000000,     // Queued for compilation
     1.5    JVM_ACC_NOT_C2_COMPILABLE       = 0x02000000,
     1.6    JVM_ACC_NOT_C1_COMPILABLE       = 0x04000000,
     1.7 -  JVM_ACC_NOT_OSR_COMPILABLE      = 0x08000000,
     1.8 +  JVM_ACC_NOT_C2_OSR_COMPILABLE   = 0x08000000,
     1.9    JVM_ACC_HAS_LINE_NUMBER_TABLE   = 0x00100000,
    1.10    JVM_ACC_HAS_CHECKED_EXCEPTIONS  = 0x00400000,
    1.11    JVM_ACC_HAS_JSRS                = 0x00800000,
    1.12 @@ -121,9 +121,9 @@
    1.13    bool has_loops               () const { return (_flags & JVM_ACC_HAS_LOOPS              ) != 0; }
    1.14    bool loops_flag_init         () const { return (_flags & JVM_ACC_LOOPS_FLAG_INIT        ) != 0; }
    1.15    bool queued_for_compilation  () const { return (_flags & JVM_ACC_QUEUED                 ) != 0; }
    1.16 -  bool is_not_c1_compilable () const    { return (_flags & JVM_ACC_NOT_C1_COMPILABLE      ) != 0; }
    1.17 -  bool is_not_c2_compilable () const    { return (_flags & JVM_ACC_NOT_C2_COMPILABLE      ) != 0; }
    1.18 -  bool is_not_osr_compilable   () const { return (_flags & JVM_ACC_NOT_OSR_COMPILABLE     ) != 0; }
    1.19 +  bool is_not_c1_compilable    () const { return (_flags & JVM_ACC_NOT_C1_COMPILABLE      ) != 0; }
    1.20 +  bool is_not_c2_compilable    () const { return (_flags & JVM_ACC_NOT_C2_COMPILABLE      ) != 0; }
    1.21 +  bool is_not_c2_osr_compilable() const { return (_flags & JVM_ACC_NOT_C2_OSR_COMPILABLE  ) != 0; }
    1.22    bool has_linenumber_table    () const { return (_flags & JVM_ACC_HAS_LINE_NUMBER_TABLE  ) != 0; }
    1.23    bool has_checked_exceptions  () const { return (_flags & JVM_ACC_HAS_CHECKED_EXCEPTIONS ) != 0; }
    1.24    bool has_jsrs                () const { return (_flags & JVM_ACC_HAS_JSRS               ) != 0; }
    1.25 @@ -186,7 +186,7 @@
    1.26    void set_loops_flag_init()           { atomic_set_bits(JVM_ACC_LOOPS_FLAG_INIT);         }
    1.27    void set_not_c1_compilable()         { atomic_set_bits(JVM_ACC_NOT_C1_COMPILABLE);       }
    1.28    void set_not_c2_compilable()         { atomic_set_bits(JVM_ACC_NOT_C2_COMPILABLE);       }
    1.29 -  void set_not_osr_compilable()        { atomic_set_bits(JVM_ACC_NOT_OSR_COMPILABLE);      }
    1.30 +  void set_not_c2_osr_compilable()     { atomic_set_bits(JVM_ACC_NOT_C2_OSR_COMPILABLE);   }
    1.31    void set_has_linenumber_table()      { atomic_set_bits(JVM_ACC_HAS_LINE_NUMBER_TABLE);   }
    1.32    void set_has_checked_exceptions()    { atomic_set_bits(JVM_ACC_HAS_CHECKED_EXCEPTIONS);  }
    1.33    void set_has_jsrs()                  { atomic_set_bits(JVM_ACC_HAS_JSRS);                }

mercurial