Searched defs:dead (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DSession.java55 private boolean dead = false; field in class:Session
74 if (!dead) {
88 if (!dead) {
101 dead = true;
/openjdk7/hotspot/src/share/vm/opto/
H A DidealKit.hpp50 // - final value of iv is available after end_loop (until dead())
59 // dead(variable) - variable's value is no longer live
71 // goto_(exit); dead(i);
74 // } end_loop(); dead(i);
161 void dead(IdealVariable& v) { set(v, (Node*)NULL); } function in class:IdealKit
H A Dnode.cpp311 // Note: At this point, C is dead,
350 assert( is_not_dead(n0), "can not use dead node");
362 assert( is_not_dead(n0), "can not use dead node");
363 assert( is_not_dead(n1), "can not use dead node");
376 assert( is_not_dead(n0), "can not use dead node");
377 assert( is_not_dead(n1), "can not use dead node");
378 assert( is_not_dead(n2), "can not use dead node");
392 assert( is_not_dead(n0), "can not use dead node");
393 assert( is_not_dead(n1), "can not use dead node");
394 assert( is_not_dead(n2), "can not use dead nod
1218 kill_dead_code( Node *dead, PhaseIterGVN *igvn ) argument
[all...]
H A Dstringopts.cpp659 void PhaseStringOpts::record_dead_node(Node* dead) { argument
660 dead_worklist.push(dead);
664 // Delete any dead nodes to make things clean enough that escape
1084 // Statically not equal to MIN_VALUE so this path is dead
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp256 // This method is safe to call without holding the CodeCache_lock, as long as a dead codeblob is not
336 cur->print_on(tty, is_live ? "scavenge root" : "dead scavenge root"); tty->cr();
916 CodeBlob_sizes dead; local
920 dead.add(p);
934 if (!dead.is_empty()) {
935 dead.print("dead");
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp505 const bool dead = _post_remark && !_live_bit_map->isMarked(addr); local
508 dead ? "dead" : "live",
510 (!dead && CMSPrintObjectsInDump) ? ":" : ".");
511 if (CMSPrintObjectsInDump && !dead) {
1146 // the previous concurrent cycle then we may have dead but unswept objects
1153 // when we know that it's dead; if the bitmap is not allocated then
1158 return false; // We can't say for sure if it's live, so we say that it's dead.
2123 // so that later phase can skip dead space quickly. So verification
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp1247 // "dead wood" (i.e., not reclaimed). The function uses a normal distribution
1256 // fraction allowed as dead wood
1395 // occur in those regions. Then the maximum amount of dead wood to allow is
1397 // the region with approximately that amount of dead space to the left is
1430 space->is_empty(), "no dead space allowed to the left");
1432 "region must have dead space");
1469 // Locate the region with the desired amount of dead space to the left.
1473 // Scan from the first region with dead space to the limit region and find the
1671 const size_t dead = pointer_delta(space->top(), _space_info[id].new_top()); local
1684 } else if (dead
[all...]

Completed in 119 milliseconds