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

12

/openjdk9/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
/openjdk9/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp243 assert(type1.is_long() || type1.is_double(), "must be long/double");
280 if (_locals[index].is_double() || _locals[index].is_long()) {
303 assert(type1.is_long() || type1.is_double(), "must be long/double");
312 if (_locals[index+1].is_double() || _locals[index+1].is_long()) {
H A DstackMapFrame.hpp206 assert(type1.is_long() || type1.is_double(), "must be long/double");
248 assert(type2.is_long() || type2.is_double(), "must be long/double_2");
H A DverificationType.hpp184 bool is_double() const { return (_u._data == Double); } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk9/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp246 void do_fcmp(bool is_double, bool unordered_is_greater);
H A DsharkBlock.cpp1133 void SharkBlock::do_fcmp(bool is_double, bool unordered_is_greater) { argument
1135 if (is_double) {
/openjdk9/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.cpp605 } else if (tag.is_double()) {
H A DbcEscapeAnalyzer.cpp419 if (tag.is_long() || tag.is_double()) {
/openjdk9/hotspot/src/share/vm/runtime/
H A DfieldDescriptor.cpp142 } else if (t.is_double()){
H A DcommandLineFlagConstraintList.cpp361 } else if (flag->is_double()) {
H A Dglobals.cpp294 bool Flag::is_double() const { function in class:Flag
499 } else if (is_double()) {
548 } else if (is_double()) {
663 } else if (is_double()) {
1332 if (!result->is_double()) return Flag::WRONG_FORMAT;
1355 if (!flag->is_double()) return Flag::WRONG_FORMAT;
1374 guarantee(faddr != NULL && faddr->is_double(), "wrong flag type");
H A DcommandLineFlagRangeList.cpp438 } else if (flag->is_double()) {
/openjdk9/hotspot/src/cpu/s390/vm/
H A DmacroAssembler_s390.hpp61 const Address &a, bool is_double = true);
71 const Address &a, bool is_double = true);
81 int reg2mem_opt(Register reg, const Address &a, bool is_double = true);
89 void mem2reg_opt(Register reg, const Address &a, bool is_double = true);
H A DmacroAssembler_s390.cpp268 void MacroAssembler::freg2mem_opt(FloatRegister reg, const Address &a, bool is_double) { argument
269 if (is_double) {
321 void MacroAssembler::mem2freg_opt(FloatRegister reg, const Address &a, bool is_double) { argument
322 if (is_double) {
379 int MacroAssembler::reg2mem_opt(Register reg, const Address &a, bool is_double) { argument
381 if (is_double) {
428 void MacroAssembler::mem2reg_opt(Register reg, const Address &a, bool is_double) { argument
429 if (is_double) {
/openjdk9/hotspot/src/share/vm/oops/
H A DcpCache.hpp359 bool is_double() const { return flag_state() == dtos; } function in class:VALUE_OBJ_CLASS_SPEC
H A DconstantPool.hpp381 assert(tag_at(which).is_double(), "Corrupted constant pool");
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_ValueType.hpp129 bool is_double() { return tag() == doubleTag; } function in class:ValueType
/openjdk9/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp589 bool is_double = (code == Bytecodes::_i2d); local
590 FloatRegister rdst = is_double ? dst->as_double_reg() : dst->as_float_reg();
591 FloatRegisterImpl::Width w = is_double ? FloatRegisterImpl::D : FloatRegisterImpl::S;
626 bool is_double = (code == Bytecodes::_f2d); local
627 assert((!is_double && dst->is_single_fpu()) || (is_double && dst->is_double_fpu()), "check");
630 FloatRegister rdst = is_double ? dst->as_double_reg() : dst->as_float_reg();
631 FloatRegisterImpl::Width vw = is_double ? FloatRegisterImpl::S : FloatRegisterImpl::D;
632 FloatRegisterImpl::Width dw = is_double ? FloatRegisterImpl::D : FloatRegisterImpl::S;
H A DstubGenerator_sparc.cpp247 Label is_long, is_float, is_double, is_object, exit; local
250 __ delayed()->cmp(type, T_DOUBLE); __ br(Assembler::equal, false, Assembler::pn, is_double);
269 __ BIND(is_double);
/openjdk9/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.cpp328 } else if (tag.is_double()) {
/openjdk9/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_32.cpp254 Label is_long, is_float, is_double, exit; local
261 __ jcc(Assembler::equal, is_double);
303 __ BIND(is_double);
H A DstubGenerator_x86_64.cpp336 Label is_long, is_float, is_double, exit; local
345 __ jcc(Assembler::equal, is_double);
417 __ BIND(is_double);
H A Dc1_LIRGenerator_x86.cpp53 assert(!value()->type()->is_float() && !value()->type()->is_double(),
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A DstubGenerator_aarch64.cpp320 Label is_long, is_float, is_double, exit; local
329 __ br(Assembler::EQ, is_double);
393 __ BIND(is_double);

Completed in 542 milliseconds

12