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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Optimizer.cpp267 if (x_ifop != NULL) { // x is an ifop, y is a constant
400 IfOp* ifop = if_->x()->as_IfOp(); local
403 if (!con || !ifop) {
404 ifop = if_->y()->as_IfOp();
408 if (con && ifop) {
409 Constant* tval = ifop->tval()->as_Constant();
410 Constant* fval = ifop->fval()->as_Constant();
412 // Find the instruction before if_, starting with ifop.
413 // When if_ and ifop are not in the same block, prev
416 Value prev = ifop;
[all...]
H A Dc1_LIRGenerator.cpp709 static Value maxvalue(IfOp* ifop) { argument
710 switch (ifop->cond()) {
715 if (ifop->x() == ifop->tval() &&
716 ifop->y() == ifop->fval()) return ifop->y();
721 if (ifop->x() == ifop->tval() &&
722 ifop
810 IfOp* ifop = length->as_IfOp(); local
[all...]

Completed in 1943 milliseconds