Searched refs:jlong_cast (Results 1 - 14 of 14) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A DcompressedStream.cpp106 juint h = high(jlong_cast(value));
107 juint l = low( jlong_cast(value));
269 jlong y2 = jlong_cast(decode.read_double());
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions_gcc.hpp176 inline jlong jlong_cast (jdouble x) { return *(jlong* )&x; } function
H A DglobalDefinitions_sparcWorks.hpp191 inline jlong jlong_cast (jdouble x) { return *(jlong* )&x; } function
H A DglobalDefinitions_visCPP.hpp124 inline jlong jlong_cast (jdouble x) { return *(jlong* )&x; } function
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp217 // Use jlong_cast to compare the bits rather than numerical values.
219 if (jlong_cast(_old_cp->double_at(cpi_old)) != jlong_cast(_new_cp->double_at(cpi_new)))
/openjdk7/hotspot/src/share/vm/interpreter/
H A DabstractInterpreter.hpp300 case T_DOUBLE: set_long_in_slot(slot_addr, jlong_cast(value->d)); break;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.cpp74 case Bytecodes::_lsub: set_constant(jlong_cast(0)); return;
80 case Bytecodes::_lxor: set_constant(jlong_cast(0)); return;
300 case longTag : if (t->as_LongConstant()->value() == (jlong)0) { set_constant(jlong_cast(0)); return; } break;
317 jlong mask = ~(~jlong_cast(0) << (64 - shift));
318 if (shift == 0) mask = ~jlong_cast(0);
H A Dc1_Instruction.cpp408 jlong temp = jlong_cast(type()->as_DoubleConstant()->value());
449 jlong_cast(t1->value()) == jlong_cast(t2->value()));
H A Dc1_LIR.hpp133 return low(jlong_cast(_value.get_jdouble()));
140 return high(jlong_cast(_value.get_jdouble()));
147 return jlong_cast(_value.get_jdouble());
170 return jlong_cast(d) == jlong_cast(ok);
H A Dc1_GraphBuilder.cpp583 case doubleTag: return jlong_cast(con->type()->as_DoubleConstant()->value()) == jlong_cast(0);
/openjdk7/hotspot/src/share/vm/opto/
H A Ddivnode.cpp1245 jlong x1 = jlong_cast(f1); // note: *(long*)&f1, not just (long)f1
1246 jlong x2 = jlong_cast(f2);
1258 jlong xr = jlong_cast(fmod(f1, f2));
H A Dtype.cpp999 if( jlong_cast(_d) != jlong_cast(t->getd()) ) // unequal constants? (see comment in TypeF::xmeet)
1026 if (jlong_cast(_d) != jlong_cast(t->getd())) return false;
H A Dmemnode.cpp3502 case T_DOUBLE: con = jlong_cast(val->getd()); break;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp1270 __ set(jlong_cast(c->as_jdouble()), to_reg->as_register_lo());
1272 __ set(low(jlong_cast(c->as_jdouble())), to_reg->as_register_lo());
1273 __ set(high(jlong_cast(c->as_jdouble())), to_reg->as_register_hi());

Completed in 122 milliseconds