Searched defs:OopMapCache (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A DoopMapCache.hpp35 // OopMapCache's are allocated lazily per instanceKlass.
65 friend class OopMapCache;
159 class OopMapCache : public CHeapObj<mtClass> { class in inherits:CHeapObj
175 OopMapCache();
176 ~OopMapCache(); // free up memory
194 // Returns total no. of bytes allocated as part of OopMapCache's
H A DoopMapCache.cpp37 friend class OopMapCache;
452 // Implementation of OopMapCache
458 long OopMapCache::memory_usage() {
487 // from the C heap as is done for OopMapCache has a significant
496 inline unsigned int OopMapCache::hash_value_for(methodHandle method, int bci) {
506 OopMapCache::OopMapCache() : function in class:OopMapCache
507 _mut(Mutex::leaf, "An OopMapCache lock", true)
513 NOT_PRODUCT(_total_memory_usage += sizeof(OopMapCache) + (sizeof(OopMapCacheEntry) * _size);)
517 OopMapCache
[all...]

Completed in 1832 milliseconds