Searched defs:unloaded (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/agent/src/os/win32/windbg/
H A Dsawindbg.cpp411 ULONG loaded = 0, unloaded = 0; local
412 if (ptrIDebugSymbols->GetNumberModules(&loaded, &unloaded) != S_OK) {
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.hpp182 unsigned char _state; // {alive, not_entrant, zombie, unloaded}
191 unloaded = 3 }; enumerator in enum:nmethod::__anon200
279 // Inform external interfaces that a compiled method has been unloaded
399 bool is_unloaded() const { return _state == unloaded; }
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.cpp1936 if (tklass == NULL) return false; // unloaded class
1937 if (!tklass->is_loaded()) return false; // unloaded class
2902 // Compute the MEET of two InstPtrs when at least one is unloaded.
2910 const TypeInstPtr *unloaded = is_loaded() ? tinst : this; local
2913 // Meet unloaded class with java/lang/Object
2927 if( loaded->ptr() == TypePtr::TopPTR ) { return unloaded; }
2928 else if (loaded->ptr() == TypePtr::AnyNull) { return TypeInstPtr::make( ptr, unloaded->klass(), false, NULL, off, instance_id ); }
2931 if (unloaded->ptr() == TypePtr::BotPTR ) { return TypeInstPtr::BOTTOM; }
2934 else if( unloaded->ptr() == TypePtr::TopPTR ) { return unloaded; }
[all...]

Completed in 38 milliseconds