src/share/vm/code/codeCache.hpp

changeset 5038
0cfa93c2fcc4
parent 4952
a7fb14888912
child 5151
91eba9f82325
     1.1 --- a/src/share/vm/code/codeCache.hpp	Fri Apr 26 14:41:10 2013 -0700
     1.2 +++ b/src/share/vm/code/codeCache.hpp	Mon Apr 29 13:20:19 2013 +0200
     1.3 @@ -57,7 +57,7 @@
     1.4    static int _number_of_nmethods_with_dependencies;
     1.5    static bool _needs_cache_clean;
     1.6    static nmethod* _scavenge_root_nmethods;  // linked via nm->scavenge_root_link()
     1.7 -  static nmethod* _saved_nmethods;          // linked via nm->saved_nmethod_look()
     1.8 +  static nmethod* _saved_nmethods;          // Linked list of speculatively disconnected nmethods.
     1.9  
    1.10    static void verify_if_often() PRODUCT_RETURN;
    1.11  
    1.12 @@ -168,7 +168,7 @@
    1.13    static void set_needs_cache_clean(bool v)      { _needs_cache_clean = v;    }
    1.14    static void clear_inline_caches();             // clear all inline caches
    1.15  
    1.16 -  static nmethod* find_and_remove_saved_code(Method* m);
    1.17 +  static nmethod* reanimate_saved_code(Method* m);
    1.18    static void remove_saved_code(nmethod* nm);
    1.19    static void speculatively_disconnect(nmethod* nm);
    1.20  

mercurial