Searched refs:getf (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Ddivnode.cpp674 if (!g_isnan(t1->getf()) && g_isfinite(t1->getf()) && t1->getf() != 0.0) // could be negative ZERO or NaN
683 t2->getf() != 0.0 ) // could be negative zero
684 return TypeF::make( t1->getf()/t2->getf() );
690 if( t1 == TypeF::ZERO && !g_isnan(t2->getf()) && t2->getf() != 0.0 )
723 float f = tf->getf();
1199 float f1 = t1->getf();
[all...]
H A Dsubnode.cpp402 // return new (phase->C, 3) AddFNode(in(1), phase->makecon( TypeF::make(-t2->getf()) ) );
425 if( g_isfinite(t1->getf()) && g_isfinite(t2->getf()) ) {
426 return TypeF::make( t1->getf() - t2->getf() );
428 else if( g_isnan(t1->getf()) ) {
431 else if( g_isnan(t2->getf()) ) {
H A Dconnode.cpp726 return TypeD::make( (double)tf->getf() );
736 return TypeInt::make( SharedRuntime::f2i( tf->getf() ) );
763 return TypeLong::make( SharedRuntime::f2l( tf->getf() ) );
1255 v.set_jfloat(tf->getf());
H A Daddnode.cpp494 // jfloat f1 = t1->getf();
495 // jfloat f2 = t2->getf();
509 return TypeF::make( t0->getf() + t1->getf() );
532 // jfloat f1 = t1->getf();
533 // jfloat f2 = t2->getf();
H A Dtype.cpp883 if( jint_cast(_f) != jint_cast(t->getf()) ) // unequal constants?
905 g_isnan(t->getf()) ) {
907 return (g_isnan(_f) && g_isnan(t->getf()));
909 if (_f == t->getf()) {
913 if (jint_cast(_f) != jint_cast(t->getf())) return false;
929 return g_isfinite(getf()) != 0;
935 return g_isnan(getf()) != 0;
H A Dtype.hpp221 float getf() const;
1136 inline float Type::getf() const {
H A Dmulnode.cpp369 return TypeF::make( t0->getf() * t1->getf() );
H A Dnode.cpp1410 jfloat Node::getf() const { function in class:Node
1412 return ((ConFNode*)this)->type()->is_float_constant()->getf();
H A Dnode.hpp961 jfloat getf() const;
H A Dcfgnode.cpp300 jfloat conf = nodef->getf();
H A Doutput.cpp754 float f = t->is_float_constant()->getf();
H A Dmemnode.cpp3501 case T_FLOAT: con = jint_cast(val->getf()); break;

Completed in 138 milliseconds