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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp877 void BlockBegin::print_block(InstructionPrinter& ip, bool live_only) { argument
883 if (!live_only || n->is_pinned() || n->use_count() > 0) {
916 void BlockList::print(bool cfg_only, bool live_only) { argument
923 block->print_block(ip, live_only);
H A Dc1_IR.cpp1134 BlockPrinter(InstructionPrinter* ip, bool cfg_only, bool live_only = false) {
1137 _live_only = live_only;
1150 void IR::print(BlockBegin* start, bool cfg_only, bool live_only) { argument
1153 BlockPrinter bp(&ip, cfg_only, live_only);
1158 void IR::print(bool cfg_only, bool live_only) { argument
1160 print(start(), cfg_only, live_only); local

Completed in 1679 milliseconds