Searched refs:yvalue (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp501 ciObject* yvalue = rt->as_ObjectType()->constant_value(); local
502 assert(xvalue != NULL && yvalue != NULL, "not constants");
503 if (xvalue->is_loaded() && yvalue->is_loaded()) {
505 case If::eql: return xvalue == yvalue ? cond_true : cond_false;
506 case If::neq: return xvalue != yvalue ? cond_true : cond_false;
/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp1881 Node* yvalue = y0; local
1883 if (xvalue == yvalue) {
1890 const TypeInt* tyvalue = _gvn.type(yvalue)->isa_int();
1907 Node* ykey = yvalue;
1962 if (is_simple_name(yvalue) && !is_simple_name(xvalue))
1963 return yvalue;
1967 return (want_max ? yvalue : xvalue);
1970 return (want_max ? xvalue : yvalue);
2005 answer_if_true = (want_max ? yvalue : xvalue);
2006 answer_if_false = (want_max ? xvalue : yvalue);
[all...]

Completed in 52 milliseconds