Searched refs:zombie (Results 1 - 4 of 4) sorted by relevance
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/ |
H A D | MakeNotEntrantEvent.java | 30 private final boolean zombie; field in class:MakeNotEntrantEvent 36 zombie = z; 53 return zombie;
|
/openjdk7/jdk/src/windows/classes/sun/nio/ch/ |
H A D | WindowsSelectorImpl.java | 410 private volatile boolean zombie; field in class:WindowsSelectorImpl.SelectThread 419 zombie = true; 422 return zombie;
|
/openjdk7/hotspot/src/share/vm/code/ |
H A D | nmethod.hpp | 182 unsigned char _state; // {alive, not_entrant, zombie, unloaded} 190 zombie = 2, enumerator in enum:nmethod::__anon200 197 // and is not made into a zombie. However, once the nmethod is made into 198 // a zombie, it will be locked one final time if CompiledMethodUnload 398 bool is_zombie() const { return _state == zombie; } 406 bool make_zombie() { return make_not_entrant_or_zombie(zombie); } 532 // it is a zombie, since the VM or the ServiceThread might still be 696 // be made into a zombie, even if it is a not_entrant method. After the 697 // nmethod becomes a zombie, if CompiledMethodUnload event processing
|
H A D | nmethod.cpp | 1110 // If the method is not entrant or zombie then a JMP is plastered over the 1123 // Find all calls in an nmethod, and clear the ones that points to zombie methods 1135 // Clean inline caches pointing to both zombie and not_entrant methods 1145 // Clean inline caches pointing to both zombie and not_entrant methods 1158 // cleaning passes before moving to zombie. 1162 // Tell if a non-entrant method can be converted to a zombie (i.e., 1263 (_state == zombie ? " zombie='1'" : "")); 1271 print_on(tty, _state == zombie ? "made zombie" [all...] |
Completed in 46 milliseconds