Searched refs:_oop_map_cache (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.hpp267 OopMapCache* volatile _oop_map_cache; // OopMapCache for all methods in the klass (allocated lazily) member in class:instanceKlass
682 OopMapCache* oop_map_cache() { return _oop_map_cache; }
683 void set_oop_map_cache(OopMapCache *cache) { _oop_map_cache = cache; }
H A DinstanceKlass.cpp822 if (_oop_map_cache == NULL) {
826 if (_oop_map_cache == NULL) {
827 _oop_map_cache = new OopMapCache();
830 // _oop_map_cache is constant after init; lookup below does is own locking.
831 _oop_map_cache->lookup(method, bci, entry_for);
1889 if (_oop_map_cache != NULL) {
1890 delete _oop_map_cache;
1891 _oop_map_cache = NULL;
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp326 volatile_nonstatic_field(instanceKlass, _oop_map_cache, OopMapCache*) \

Completed in 54 milliseconds