Searched refs:getd (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dsubnode.cpp445 // return new (phase->C, 3) AddDNode(in(1), phase->makecon( TypeD::make(-t2->getd()) ) );
468 if( g_isfinite(t1->getd()) && g_isfinite(t2->getd()) ) {
469 return TypeD::make( t1->getd() - t2->getd() );
471 else if( g_isnan(t1->getd()) ) {
474 else if( g_isnan(t2->getd()) ) {
1308 double d = t1->getd();
1320 double d = t1->getd();
1331 double d = t1->getd();
[all...]
H A Ddivnode.cpp762 if (!g_isnan(t1->getd()) && g_isfinite(t1->getd()) && t1->getd() != 0.0) // could be negative ZERO or NaN
777 t2->getd() != 0.0 ) // could be negative zero
778 return TypeD::make( t1->getd()/t2->getd() );
784 if( t1 == TypeD::ZERO && !g_isnan(t2->getd()) && t2->getd() != 0.0 )
817 double d = td->getd();
1243 double f1 = t1->getd();
[all...]
H A Dconnode.cpp657 return TypeF::make( (float)td->getd() );
674 return TypeInt::make( SharedRuntime::d2i( td->getd() ) );
699 return TypeLong::make( SharedRuntime::d2l( td->getd() ) );
1266 v.set_jdouble(td->getd());
H A Daddnode.cpp546 return TypeD::make( t0->getd() + t1->getd() );
H A Dtype.cpp999 if( jlong_cast(_d) != jlong_cast(t->getd()) ) // unequal constants? (see comment in TypeF::xmeet)
1018 g_isnan(t->getd()) ) {
1020 return (g_isnan(_d) && g_isnan(t->getd()));
1022 if (_d == t->getd()) {
1026 if (jlong_cast(_d) != jlong_cast(t->getd())) return false;
1042 return g_isfinite(getd()) != 0;
1048 return g_isnan(getd()) != 0;
H A Dtype.hpp222 double getd() const;
1141 inline double Type::getd() const {
H A Dmulnode.cpp378 return TypeD::make( t0->getd() * t1->getd() );
H A Dnode.cpp1403 jdouble Node::getd() const { function in class:Node
1405 return ((ConDNode*)this)->type()->is_double_constant()->getd();
H A Dnode.hpp960 jdouble getd() const;
H A Doutput.cpp759 jdouble d = t->is_double_constant()->getd();
H A Dmemnode.cpp3502 case T_DOUBLE: con = jlong_cast(val->getd()); break;

Completed in 117 milliseconds