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

/openjdk9/hotspot/src/cpu/sparc/vm/
H A Dmemset_with_concurrent_readers_sparc.cpp95 uintx xvalue = value & 0xff; local
96 xvalue |= (xvalue << 8);
97 xvalue |= (xvalue << 16);
98 xvalue |= (xvalue << 32);
104 // *aligned_to = xvalue;
116 " stx %[xvalue], [%[ato]-64]\n\t" // store 8 words, aligned_to pre-incremented
117 " stx %[xvalue], [
[all...]
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp491 ciObject* xvalue = lt->as_ObjectType()->constant_value(); local
493 assert(xvalue != NULL && yvalue != NULL, "not constants");
494 if (xvalue->is_loaded() && yvalue->is_loaded()) {
496 case If::eql: return xvalue == yvalue ? cond_true : cond_false;
497 case If::neq: return xvalue != yvalue ? cond_true : cond_false;
503 ciMetadata* xvalue = lt->as_MetadataType()->constant_value(); local
505 assert(xvalue != NULL && yvalue != NULL, "not constants");
506 if (xvalue->is_loaded() && yvalue->is_loaded()) {
508 case If::eql: return xvalue == yvalue ? cond_true : cond_false;
509 case If::neq: return xvalue !
[all...]
/openjdk9/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 112 milliseconds