Searched refs:dominator_depth (Results 1 - 4 of 4) sorted by relevance

/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_RangeCheckElimination.cpp347 return instruction->dominator_depth() < loop_header->dominator_depth();
595 assert(!lower_instr || lower_instr->dominator_depth() <= insert_position->dominator_depth(), "Dominator depth must be smaller");
596 assert(!upper_instr || upper_instr->dominator_depth() <= insert_position->dominator_depth(), "Dominator depth must be smaller");
598 assert(array_instr->dominator_depth() <= insert_position->dominator_depth(), "Dominator depth must be smaller");
599 assert(!length_instr || length_instr->dominator_depth() <= insert_position->dominator_depth(), "Dominato
[all...]
H A Dc1_Instruction.cpp37 int Instruction::dominator_depth() { function in class:Instruction
40 result = block()->dominator_depth();
H A Dc1_IR.cpp1029 assert(dom->dominator_depth() != -1, "Dominator must have been visited before");
1031 block->set_dominator_depth(dom->dominator_depth() + 1);
H A Dc1_Instruction.hpp439 int dominator_depth();
1704 int dominator_depth() const { return _dominator_depth; }

Completed in 66 milliseconds