Searched refs:T_OBJECT (Results 26 - 50 of 213) sorted by relevance

123456789

/openjdk10/hotspot/src/cpu/x86/vm/
H A DabstractInterpreter_x86.cpp133 case T_OBJECT : // fall through
153 case T_OBJECT : i = 9; break;
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dc1_LinearScan_ppc.hpp64 } else if (cur->type() == T_INT || cur->type() == T_LONG || cur->type() == T_OBJECT ||
H A DabstractInterpreter_ppc.cpp46 case T_OBJECT : i = 9; break;
H A Dframe_ppc.cpp172 case T_OBJECT:
192 case T_OBJECT:
/openjdk10/hotspot/src/cpu/zero/vm/
H A DabstractInterpreter_zero.cpp44 case T_OBJECT : i = 9; break;
/openjdk10/hotspot/src/share/vm/runtime/
H A DfieldType.cpp90 if (element_type == T_OBJECT) {
H A DvframeArray.cpp118 case T_OBJECT:
121 _locals->add( new StackValue(cast_from_oop<intptr_t>((value->get_obj()())), T_OBJECT ));
143 case T_OBJECT:
146 _expressions->add( new StackValue(cast_from_oop<intptr_t>((value->get_obj()())), T_OBJECT ));
349 case T_OBJECT:
350 *addr = value->get_int(T_OBJECT);
387 case T_OBJECT:
388 *addr = value->get_int(T_OBJECT);
H A DjavaCalls.cpp163 case T_OBJECT : // fall through
173 case T_OBJECT: return T_OBJECT;
365 bool oop_result_flag = (result->get_type() == T_OBJECT || result->get_type() == T_ARRAY);
584 void do_object(int begin, int end) { check_obj(T_OBJECT); }
585 void do_array(int begin, int end) { check_obj(T_OBJECT); }
592 // Treat T_OBJECT and T_ARRAY as the same
593 if (return_type == T_ARRAY) return_type = T_OBJECT;
H A Dsignature.cpp97 if (_parameter_index < 0 ) _return_type = T_OBJECT;
317 _type = T_OBJECT;
355 return _type == T_OBJECT
/openjdk10/hotspot/test/native/oops/
H A Dtest_arrayOop.cpp79 ASSERT_PRED1(check_max_length_overflow, T_OBJECT);
/openjdk10/hotspot/src/share/vm/ci/
H A DciField.hpp104 BasicType layout_type() { return type2field[(_type == NULL) ? T_OBJECT : _type->basic_type()]; }
H A DciInstance.cpp72 case T_OBJECT: // fall through
H A DciConstant.hpp109 assert(basic_type() == T_OBJECT || basic_type() == T_ARRAY, "wrong type");
H A DciObjArrayKlass.cpp65 dimension, T_OBJECT) {
H A DciField.cpp93 if (field_type == T_OBJECT || field_type == T_ARRAY) {
190 if (field_type == T_OBJECT || field_type == T_ARRAY) {
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DConstantTag.java123 return BasicType.T_OBJECT;
/openjdk10/hotspot/src/share/vm/opto/
H A Dparse3.cpp158 (bt != T_OBJECT || field->type()->is_loaded())) {
180 if( bt == T_OBJECT ) {
278 if (bt == T_OBJECT) {
383 const intptr_t header = arrayOopDesc::base_offset_in_bytes(T_OBJECT);
388 store_oop_to_array(control(), array, eaddr, adr_type, elem, elemtype, T_OBJECT, MemNode::unordered); local
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DInstructionFactory.java245 case Const.T_OBJECT:
292 case Const.T_OBJECT:
471 case Const.T_OBJECT:
496 case Const.T_OBJECT:
524 case Const.T_OBJECT:
552 case Const.T_OBJECT:
660 case Const.T_OBJECT:
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A DabstractInterpreter_aarch64.cpp48 case T_OBJECT : i = 9; break;
/openjdk10/hotspot/src/cpu/s390/vm/
H A DabstractInterpreter_s390.cpp46 case T_OBJECT : i = 9; break;
/openjdk10/hotspot/src/share/vm/prims/
H A Dstackwalk.cpp181 // T_OBJECT, or T_CONFLICT.
187 JavaValue result(T_OBJECT);
192 // ## StackValue type is T_INT or T_OBJECT (or converted to T_LONG on 64-bit)
212 case T_OBJECT:
249 if (type != T_OBJECT && type != T_CONFLICT) {
409 JavaValue result(T_OBJECT);
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp1128 __ move_wide(new LIR_Address(thread_reg, in_bytes(JavaThread::exception_oop_offset()), T_OBJECT),
1131 new LIR_Address(thread_reg, in_bytes(JavaThread::exception_oop_offset()), T_OBJECT));
1133 new LIR_Address(thread_reg, in_bytes(JavaThread::exception_pc_offset()), T_OBJECT));
1135 LIR_Opr result = new_register(T_OBJECT);
1245 new LIR_Address(reference.result(), referent_offset, T_OBJECT);
1307 __ move_wide(new LIR_Address(temp, in_bytes(Klass::java_mirror_offset()), T_OBJECT), result);
1334 __ move_wide(new LIR_Address(getThreadPointer(), in_bytes(JavaThread::threadObj_offset()), T_OBJECT), reg);
1344 signature.append(T_OBJECT); // receiver
1434 case T_OBJECT:
1532 pre_val = new_register(T_OBJECT);
[all...]
/openjdk10/hotspot/src/share/vm/classfile/
H A DbytecodeAssembler.cpp184 case T_OBJECT:
251 case T_OBJECT:
/openjdk10/hotspot/src/cpu/arm/vm/
H A DabstractInterpreter_arm.cpp51 case T_OBJECT : // fall through
60 case T_OBJECT : // fall through
/openjdk10/hotspot/src/share/vm/interpreter/
H A DabstractInterpreter.hpp301 case T_OBJECT: value->l = (jobject)*oop_addr_in_slot(slot_addr); break;
315 case T_OBJECT: *oop_addr_in_slot(slot_addr) = (oop) value->l; break;

Completed in 298 milliseconds

123456789