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

/openjdk7/hotspot/src/share/vm/utilities/
H A DconstantTag.hpp62 bool is_double() const { return _tag == JVM_CONSTANT_Double; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.cpp1116 void SharkBlock::do_fcmp(bool is_double, bool unordered_is_greater) { argument
1118 if (is_double) {
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueType.hpp121 bool is_double() { return tag() == doubleTag; } function in class:ValueType
/openjdk7/hotspot/src/share/vm/runtime/
H A Dglobals.hpp242 bool is_double() const { return strcmp(type, "double") == 0; } function in struct:Flag
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.hpp183 bool is_double() const { return (_u._data == Double); } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp331 bool is_double() const { return flag_state() == dtos; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp285 bool is_double(ciType* type) const { function in class:ciTypeFlow::StateVector
312 assert(is_double(type_at_tos()), "must be double");
384 (is_double(type_at(local(prev_index))) ||
407 assert(is_double(type), "must be double type");
415 assert(is_double(type), "must be double");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp685 bool is_double = (code == Bytecodes::_i2d); local
686 FloatRegister rdst = is_double ? dst->as_double_reg() : dst->as_float_reg();
687 FloatRegisterImpl::Width w = is_double ? FloatRegisterImpl::D : FloatRegisterImpl::S;
725 bool is_double = (code == Bytecodes::_f2d); local
726 assert((!is_double && dst->is_single_fpu()) || (is_double && dst->is_double_fpu()), "check");
729 FloatRegister rdst = is_double ? dst->as_double_reg() : dst->as_float_reg();
730 FloatRegisterImpl::Width vw = is_double ? FloatRegisterImpl::S : FloatRegisterImpl::D;
731 FloatRegisterImpl::Width dw = is_double ? FloatRegisterImpl::D : FloatRegisterImpl::S;
H A DstubGenerator_sparc.cpp268 Label is_long, is_float, is_double, is_object, exit; local
271 __ delayed()->cmp(type, T_DOUBLE); __ br(Assembler::equal, false, Assembler::pn, is_double);
290 __ BIND(is_double);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_32.cpp274 Label is_long, is_float, is_double, exit; local
281 __ jcc(Assembler::equal, is_double);
323 __ BIND(is_double);
H A DstubGenerator_x86_64.cpp347 Label is_long, is_float, is_double, exit; local
356 __ jcc(Assembler::equal, is_double);
417 __ BIND(is_double);

Completed in 100 milliseconds