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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp1246 void GraphBuilder::if_same(ValueType* type, If::Condition cond) { function in class:GraphBuilder
2649 case Bytecodes::_if_icmpeq : if_same(intType , If::eql); break;
2650 case Bytecodes::_if_icmpne : if_same(intType , If::neq); break;
2651 case Bytecodes::_if_icmplt : if_same(intType , If::lss); break;
2652 case Bytecodes::_if_icmpge : if_same(intType , If::geq); break;
2653 case Bytecodes::_if_icmpgt : if_same(intType , If::gtr); break;
2654 case Bytecodes::_if_icmple : if_same(intType , If::leq); break;
2655 case Bytecodes::_if_acmpeq : if_same(objectType, If::eql); break;
2656 case Bytecodes::_if_acmpne : if_same(objectType, If::neq); break;

Completed in 44 milliseconds