Searched refs:T_OBJECT (Results 1 - 25 of 213) sorted by relevance

123456789

/openjdk10/hotspot/src/share/vm/runtime/
H A DstackValue.hpp44 _type = T_OBJECT;
57 assert(t == T_OBJECT, "should not be used");
63 assert(type() == T_OBJECT, "type check");
68 assert(type() == T_OBJECT, "type check");
73 assert(type() == T_OBJECT, "type check");
84 assert(t == T_OBJECT && type() == T_OBJECT, "type check");
97 if (_type == T_OBJECT)
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dc1_LIR_ppc.cpp55 assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
60 assert(base()->type() == T_OBJECT || base()->type() == T_INT || base()->type() == T_METADATA,
/openjdk10/hotspot/src/share/vm/oops/
H A DobjArrayOop.hpp76 return arrayOopDesc::base_offset_in_bytes(T_OBJECT);
80 HeapWord* base() const { return (HeapWord*) arrayOopDesc::base(T_OBJECT); }
90 static int header_size() { return arrayOopDesc::header_size(T_OBJECT); }
/openjdk10/hotspot/src/cpu/arm/vm/
H A Dc1_LIR_arm.cpp68 assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA, "wrong type for addresses");
76 assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
81 assert(base()->type() == T_OBJECT || base()->type() == T_INT || base()->type() == T_METADATA,
/openjdk10/hotspot/src/share/vm/ci/
H A DciConstant.cpp59 case T_OBJECT:
H A DciArray.cpp40 if (bt == T_ARRAY) return T_OBJECT;
60 case T_OBJECT:
67 return ciConstant(T_OBJECT, box);
H A DciType.hpp32 // This class represents either a class (T_OBJECT), array (T_ARRAY),
70 bool is_primitive_type() const { return basic_type() != T_OBJECT && basic_type() != T_ARRAY; }
H A DciType.cpp37 // This class represents either a class (T_OBJECT), array (T_ARRAY),
49 _basic_type = k->is_array_klass() ? T_ARRAY : T_OBJECT;
122 // As a bonus, produce the right reference type for T_OBJECT.
128 if (t == T_OBJECT) return ciEnv::_Object_klass; // java/lang/Object
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A Dc1_LIR_aarch64.cpp51 assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
H A Dc1_LinearScan_aarch64.hpp67 } else if (cur->type() == T_INT || cur->type() == T_LONG || cur->type() == T_OBJECT || cur->type() == T_ADDRESS || cur->type() == T_METADATA) {
/openjdk10/hotspot/src/cpu/s390/vm/
H A Dc1_LIR_s390.cpp54 assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
/openjdk10/hotspot/src/cpu/x86/vm/
H A Dc1_LIR_x86.cpp65 assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
70 assert(base()->type() == T_OBJECT || base()->type() == T_INT || base()->type() == T_METADATA,
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DObjArray.java58 long offset = baseOffsetInBytes(BasicType.T_OBJECT) + (index * elementSize);
77 long baseOffset = baseOffsetInBytes(BasicType.T_OBJECT);
/openjdk10/hotspot/src/cpu/sparc/vm/
H A Dc1_LIR_sparc.cpp53 assert(base()->type() == T_OBJECT || base()->type() == T_LONG || base()->type() == T_METADATA,
H A Dc1_LinearScan_sparc.hpp62 } else if (cur->type() == T_INT || cur->type() == T_LONG || cur->type() == T_OBJECT || cur->type() == T_ADDRESS || cur->type() == T_METADATA) {
/openjdk10/hotspot/src/share/vm/utilities/
H A DconstantTag.cpp58 return T_OBJECT;
H A DglobalDefinitions.cpp114 case T_OBJECT:
178 _type2aelembytes[T_OBJECT] = heapOopSize;
233 T_OBJECT, // T_OBJECT = 12,
234 T_OBJECT, // T_ARRAY = 13,
257 T_OBJECT, // T_OBJECT = 12,
258 T_OBJECT, // T_ARRAY = 13,
281 T_OBJECT_aelem_bytes, // T_OBJECT = 12,
/openjdk10/hotspot/src/share/vm/opto/
H A Dconnode.cpp53 case T_OBJECT: return new ConPNode( t->is_ptr() );
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DBasicType.java54 public static final BasicType T_OBJECT = new BasicType(tObject); field in class:BasicType
129 case 'L': return T_OBJECT;
/openjdk10/hotspot/src/share/vm/shark/
H A DsharkConstant.cpp38 if (constant.basic_type() == T_OBJECT) {
83 case T_OBJECT:
H A DsharkState.cpp215 case T_OBJECT:
259 case T_OBJECT:
297 type = ciType::make(T_OBJECT); // XXX what about T_ARRAY?
306 case T_OBJECT:
335 type = ciType::make(T_OBJECT); // XXX what about T_ARRAY?
344 case T_OBJECT:
/openjdk10/hotspot/src/share/vm/interpreter/
H A Dbytecodes.cpp285 def(_aconst_null , "aconst_null" , "b" , NULL , T_OBJECT , 1, false);
309 def(_aload , "aload" , "bi" , "wbii" , T_OBJECT , 1, false);
326 def(_aload_0 , "aload_0" , "b" , NULL , T_OBJECT , 1, true ); // rewriting in interpreter
327 def(_aload_1 , "aload_1" , "b" , NULL , T_OBJECT , 1, false);
328 def(_aload_2 , "aload_2" , "b" , NULL , T_OBJECT , 1, false);
329 def(_aload_3 , "aload_3" , "b" , NULL , T_OBJECT , 1, false);
334 def(_aaload , "aaload" , "b" , NULL , T_OBJECT , -1, true );
460 def(_areturn , "areturn" , "b" , NULL , T_OBJECT , -1, true);
471 def(_new , "new" , "bkk" , NULL , T_OBJECT , 1, true );
472 def(_newarray , "newarray" , "bc" , NULL , T_OBJECT ,
[all...]
/openjdk10/hotspot/src/share/vm/jvmci/
H A DjvmciCompilerToVM.hpp176 assert(expectedType == T_OBJECT || java_lang_boxing_object::is_instance(arg, expectedType), "arg type mismatch");
187 _jca->push_oop(next_arg(T_OBJECT));
203 inline void do_object() { _jca->push_oop(next_arg(T_OBJECT)); }
204 inline void do_object(int begin, int end) { if (!is_return_type()) _jca->push_oop(next_arg(T_OBJECT)); }
205 inline void do_array(int begin, int end) { if (!is_return_type()) _jca->push_oop(next_arg(T_OBJECT)); }
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_ValueType.cpp137 case T_OBJECT : return objectType;
157 case T_OBJECT : {
183 case objectTag: return T_OBJECT;
/openjdk10/hotspot/src/cpu/zero/vm/
H A DinterpreterRT_zero.cpp61 push(T_OBJECT);
104 case T_OBJECT:

Completed in 112 milliseconds

123456789