Searched refs:is_double (Results 1 - 25 of 27) sorted by relevance

12

/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/classfile/
H A DstackMapFrame.cpp298 assert(type1.is_long() || type1.is_double(), "must be long/double");
335 if (_locals[index].is_double() || _locals[index].is_long()) {
358 assert(type1.is_long() || type1.is_double(), "must be long/double");
367 if (_locals[index+1].is_double() || _locals[index+1].is_long()) {
H A DstackMapFrame.hpp211 assert(type1.is_long() || type1.is_double(), "must be long/double");
253 assert(type2.is_long() || type2.is_double(), "must be long/double_2");
H A DverificationType.hpp183 bool is_double() const { return (_u._data == Double); } function in class:VALUE_OBJ_CLASS_SPEC
H A DclassFileParser.cpp884 guarantee_property(value_type.is_double(), "Inconsistent constant value type in class file %s", CHECK);
H A Dverifier.cpp1996 } else if (tag.is_double()) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldDescriptor.cpp119 } else if (t.is_double()){
H A Dglobals.cpp115 if (is_double()) st->print("%-16f", get_double());
153 } else if (is_double()) {
441 if (!result->is_double()) return false;
449 if (!result->is_double()) return false;
459 guarantee(faddr != NULL && faddr->is_double(), "wrong flag type");
H A Dglobals.hpp242 bool is_double() const { return strcmp(type, "double") == 0; } function in struct:Flag
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp246 void do_fcmp(bool is_double, bool unordered_is_greater);
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/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");
H A DciEnv.cpp598 } else if (tag.is_double()) {
H A DbcEscapeAnalyzer.cpp398 if (tag.is_long() || tag.is_double()) {
H A DciTypeFlow.cpp1498 } else if (is_double(type)) {
/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/oops/
H A DcpCacheOop.hpp331 bool is_double() const { return flag_state() == dtos; } function in class:VALUE_OBJ_CLASS_SPEC
H A DconstantPoolOop.hpp407 assert(tag_at(which).is_double(), "Corrupted constant pool");
/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/share/vm/interpreter/
H A DbytecodeTracer.cpp303 } else if (tag.is_double()) {
H A DbytecodeInterpreter.cpp1855 if (cache->is_long() || cache->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);
H A Dc1_LIRGenerator_x86.cpp53 assert(!value()->type()->is_float() && !value()->type()->is_double(),

Completed in 173 milliseconds

12