Searched refs:is_long (Results 1 - 25 of 40) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/utilities/
H A DconstantTag.hpp61 bool is_long() const { return _tag == JVM_CONSTANT_Long; } 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.hpp181 bool is_long() const { return (_u._data == Long); } function in class:VALUE_OBJ_CLASS_SPEC
237 return VerificationType(is_long() ? Long_2nd : Double_2nd);
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldDescriptor.cpp115 } else if (t.is_long()){
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp225 void do_div_or_rem(bool is_long, bool is_rem);
H A DsharkBlock.cpp948 void SharkBlock::do_div_or_rem(bool is_long, bool is_rem) { argument
955 if (is_long) {
982 if (is_long)
1002 if (is_long)
1009 if (is_long)
/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp463 const TypeLong *r0 = t0->is_long(); // Handy access
464 const TypeLong *r1 = t1->is_long();
789 const TypeLong *r0 = t0->is_long(); // Handy access
790 const TypeLong *r1 = t1->is_long();
825 const TypeLong *r0 = t0->is_long(); // Handy access
826 const TypeLong *r1 = t1->is_long();
H A Dconnode.cpp49 case T_LONG: return new (C) ConLNode( t->is_long() );
200 case T_LONG: return new (C) CMoveLNode( bol, left, right, t->is_long() );
834 const TypeLong* this_type = this->type()->is_long();
981 const TypeLong *tl = t->is_long();
991 const TypeLong *tl = t->is_long();
1008 const TypeLong *tl = t->is_long();
1230 const TypeLong *tl = t->is_long();
H A Dmulnode.cpp329 const TypeLong *r0 = t0->is_long(); // Handy access
330 const TypeLong *r1 = t1->is_long();
539 const TypeLong *r0 = t0->is_long(); // Handy access
540 const TypeLong *r1 = t1->is_long();
829 const TypeLong *r1 = t1->is_long(); // Handy access
1038 const TypeLong *r1 = t1->is_long(); // Handy access
1315 const TypeLong *r1 = t1->is_long(); // Handy access
H A Ddivnode.cpp609 const TypeLong *i1 = t1->is_long();
610 const TypeLong *i2 = t2->is_long();
1017 const TypeLong *tl = t->is_long();
1159 const TypeLong *i1 = t1->is_long();
1160 const TypeLong *i2 = t2->is_long();
H A DidealGraphPrinter.cpp543 } else if (t->base() == Type::Long && t->is_long()->is_con()) {
544 const TypeLong *typeLong = t->is_long();
H A Dtype.hpp226 const TypeLong *is_long() const;
1155 inline const TypeLong *Type::is_long() const {
1311 #define is_intptr_t is_long
H A Dsubnode.cpp352 const TypeLong *r0 = t1->is_long(); // Handy access
353 const TypeLong *r1 = t2->is_long();
603 const TypeLong *r0 = t1->is_long(); // Handy access
604 const TypeLong *r1 = t2->is_long();
H A Dcfgnode.cpp1031 jt->is_long()->_lo == ft->is_long()->_lo &&
1032 jt->is_long()->_hi == ft->is_long()->_hi)
H A Dtype.cpp1411 const TypeLong *r = t->is_long(); // Turn into a TypeLong
1427 const TypeLong *ot = old->is_long();
1446 max = limit->is_long()->_hi;
1447 min = limit->is_long()->_lo;
1527 const TypeLong *r = t->is_long(); // Handy access
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp279 bool is_long(ciType* type) const {
329 assert(is_long(type_at_tos()), "must be long");
385 is_long(type_at(local(prev_index))))) {
453 assert(is_long(type), "must be long type");
461 assert(is_long(type), "must be long");
H A DciEnv.cpp594 } else if (tag.is_long()) {
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueType.hpp119 bool is_long() { return tag() == longTag; } function in class:ValueType
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp329 bool is_long() const { return flag_state() == ltos; } function in class:VALUE_OBJ_CLASS_SPEC
H A DconstantPoolOop.hpp395 assert(tag_at(which).is_long(), "Corrupted constant pool");
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.cpp213 if (tag_old.is_long()) {
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.cpp299 } else if (tag.is_long()) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_64.cpp347 Label is_long, is_float, is_double, exit; local
350 __ jcc(Assembler::equal, is_long);
352 __ jcc(Assembler::equal, is_long);
409 __ BIND(is_long);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DstubGenerator_sparc.cpp268 Label is_long, is_float, is_double, is_object, exit; local
272 __ delayed()->cmp(type, T_LONG); __ br(Assembler::equal, false, Assembler::pn, is_long);
294 __ BIND(is_long);

Completed in 146 milliseconds

12