Searched refs:g_isnan (Results 1 - 13 of 13) sorted by relevance

/openjdk10/hotspot/src/share/vm/utilities/
H A DglobalDefinitions_sparcWorks.hpp215 inline int g_isnan(float f) { return isnanf(f); } function
218 inline int g_isnan(float f) { return isnand(f); } function
221 inline int g_isnan(double f) { return isnand(f); } function
223 inline int g_isnan(float f) { return isnanf(f); } function
224 inline int g_isnan(double f) { return isnan(f); } function
H A DglobalDefinitions_gcc.hpp198 inline int g_isnan(float f) { return isnanf(f); } function
201 inline int g_isnan(float f) { return isnand(f); } function
203 inline int g_isnan(double f) { return isnand(f); } function
205 inline int g_isnan(double f) { return isnan(f); } function
207 inline int g_isnan(float f) { return isnanf(f); } function
208 inline int g_isnan(double f) { return isnan(f); } function
H A DglobalDefinitions_xlc.hpp111 inline int g_isnan(float f) { return isnan(f); } function
112 inline int g_isnan(double f) { return isnan(f); } function
H A DglobalDefinitions_visCPP.hpp126 inline int g_isnan(jfloat f) { return _isnan(f); } function
127 inline int g_isnan(jdouble f) { return _isnan(f); } function
H A DglobalDefinitions.cpp310 if (g_isnan((jdouble)f)) {
327 if (g_isnan(f)) {
/openjdk10/hotspot/src/share/vm/opto/
H A Ddivnode.cpp688 if (!g_isnan(t1->getf()) && g_isfinite(t1->getf()) && t1->getf() != 0.0) // could be negative ZERO or NaN
704 if( t1 == TypeF::ZERO && !g_isnan(t2->getf()) && t2->getf() != 0.0 )
776 if (!g_isnan(t1->getd()) && g_isfinite(t1->getd()) && t1->getd() != 0.0) // could be negative ZERO or NaN
798 if( t1 == TypeD::ZERO && !g_isnan(t2->getd()) && t2->getd() != 0.0 )
1219 if (g_isnan(f1)) return t1;
1220 if (g_isnan(f2)) return t2;
1263 if (g_isnan(f1)) return t1;
1264 if (g_isnan(f2)) return t2;
H A Dsubnode.cpp438 else if( g_isnan(t1->getf()) ) {
441 else if( g_isnan(t2->getf()) ) {
481 else if( g_isnan(t1->getd()) ) {
484 else if( g_isnan(t2->getd()) ) {
H A Dgcm.cpp2087 if (g_isnan(block_freq) || block_freq < MIN_BLOCK_FREQUENCY)
H A Dtype.cpp1166 return g_isnan(getf()) != 0;
1270 return g_isnan(getd()) != 0;
/openjdk10/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp351 return (x < y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
355 return (x < y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
359 return (x <= y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
363 return (x <= y) ? 1 : ((g_isnan(x) || g_isnan(y)) ? 1 : 0);
367 return (x >= y) ? 1 : ((g_isnan(x) || g_isnan(
[all...]
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.cpp399 if (g_isnan(fc->value())) {
410 if (g_isnan(dc->value())) {
438 if (g_isnan(vx) || g_isnan(vy))
452 if (g_isnan(vx) || g_isnan(vy))
H A Dc1_LIR.hpp168 return !g_isnan(f) && g_isfinite(f) && f == 1.0;
179 return !g_isnan(d) && g_isfinite(d) && d == 1.0;
/openjdk10/hotspot/src/share/vm/services/
H A DheapDumper.cpp726 if (g_isnan(f)) {
744 if (g_isnan(d)) { // collapsing NaNs

Completed in 241 milliseconds