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

/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp495 ciObject* yvalue = rt->as_ObjectType()->constant_value(); local
496 assert(xvalue != NULL && yvalue != NULL, "not constants");
497 if (xvalue->is_loaded() && yvalue->is_loaded()) {
499 case If::eql: return xvalue == yvalue ? cond_true : cond_false;
500 case If::neq: return xvalue != yvalue ? cond_true : cond_false;
508 ciMetadata* yvalue = rt->as_MetadataType()->constant_value(); local
509 assert(xvalue != NULL && yvalue != NULL, "not constants");
510 if (xvalue->is_loaded() && yvalue->is_loaded()) {
512 case If::eql: return xvalue == yvalue ? cond_true : cond_false;
513 case If::neq: return xvalue != yvalue
[all...]
/openjdk10/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp1904 Node* yvalue = y0; local
1906 if (xvalue == yvalue) {
1913 const TypeInt* tyvalue = _gvn.type(yvalue)->isa_int();
1930 Node* ykey = yvalue;
1985 if (is_simple_name(yvalue) && !is_simple_name(xvalue))
1986 return yvalue;
1990 return (want_max ? yvalue : xvalue);
1993 return (want_max ? xvalue : yvalue);
2030 answer_if_true = (want_max ? yvalue : xvalue);
2031 answer_if_false = (want_max ? xvalue : yvalue);
[all...]

Completed in 159 milliseconds