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

/openjdk7/hotspot/src/share/vm/opto/
H A Dmulnode.cpp1202 jint neg_hi = (juint)-1 >> (juint)shift; local
1206 hi = MAX2(neg_hi, pos_hi); // == -1 >>> shift;
1331 jlong neg_hi = (julong)-1 >> (juint)shift; local
1336 //hi = MAX2(neg_hi, pos_hi); // == -1 >>> shift;
1337 hi = neg_hi > pos_hi ? neg_hi : pos_hi;

Completed in 52 milliseconds