hotspot/src/share/vm/code/codeCache.hpp
changeset 7397 5b173b4ca846
parent 7108 4f87b92f3060
child 7715 12998f95a334
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
       
    24 
       
    25 #ifndef SHARE_VM_CODE_CODECACHE_HPP
       
    26 #define SHARE_VM_CODE_CODECACHE_HPP
       
    27 
       
    28 #include "code/codeBlob.hpp"
       
    29 #include "memory/allocation.hpp"
       
    30 #include "memory/heap.hpp"
       
    31 #include "oops/instanceKlass.hpp"
       
    32 #include "oops/oopsHierarchy.hpp"
    24 
    33 
    25 // The CodeCache implements the code cache for various pieces of generated
    34 // The CodeCache implements the code cache for various pieces of generated
    26 // code, e.g., compiled java methods, runtime stubs, transition frames, etc.
    35 // code, e.g., compiled java methods, runtime stubs, transition frames, etc.
    27 // The entries in the CodeCache are all CodeBlob's.
    36 // The entries in the CodeCache are all CodeBlob's.
    28 
    37 
   171   static void make_marked_nmethods_not_entrant();
   180   static void make_marked_nmethods_not_entrant();
   172 
   181 
   173     // tells how many nmethods have dependencies
   182     // tells how many nmethods have dependencies
   174   static int number_of_nmethods_with_dependencies();
   183   static int number_of_nmethods_with_dependencies();
   175 };
   184 };
       
   185 
       
   186 #endif // SHARE_VM_CODE_CODECACHE_HPP