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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp500 ciObject* xvalue = lt->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.cpp1880 Node* xvalue = x0; local
1883 if (xvalue == yvalue) {
1884 return xvalue;
1889 const TypeInt* txvalue = _gvn.type(xvalue)->isa_int();
1906 Node* xkey = xvalue;
1962 if (is_simple_name(yvalue) && !is_simple_name(xvalue))
1964 return xvalue;
1967 return (want_max ? yvalue : xvalue);
1970 return (want_max ? xvalue : yvalue);
2005 answer_if_true = (want_max ? yvalue : xvalue);
[all...]

Completed in 47 milliseconds