Searched refs:object (Results 26 - 50 of 196) sorted by relevance

12345678

/art/runtime/interpreter/mterp/x86_64/
H A Dop_monitor_enter.S2 * Synchronize on an object.
8 call SYMBOL(artLockObjectFromCode) # (object, self)
H A Dop_monitor_exit.S2 * Unlock an object.
12 call SYMBOL(artUnlockObjectFromCode) # (object, self)
H A Dop_move_exception.S4 SET_VREG_OBJECT %eax, rINSTq # fp[AA] <- exception object
H A Dop_throw.S2 * Throw an exception object in the current thread.
6 GET_VREG %eax, rINSTq # eax<- vAA (exception object)
/art/test/435-new-instance/smali/
H A Dinstance.smali30 return-object v4
38 return-object v4
46 return-object v4
54 return-object v4
/art/test/973-default-multidex/smali-multidex/
H A Diface.smali31 move-result-object v0
33 move-result-object v1
35 move-result-object v0
36 return-object v0
/art/runtime/
H A Dart_field.h88 // field access, null object for static fields
89 uint8_t GetBoolean(mirror::Object* object) SHARED_REQUIRES(Locks::mutator_lock_);
92 void SetBoolean(mirror::Object* object, uint8_t z) SHARED_REQUIRES(Locks::mutator_lock_);
94 int8_t GetByte(mirror::Object* object) SHARED_REQUIRES(Locks::mutator_lock_);
97 void SetByte(mirror::Object* object, int8_t b) SHARED_REQUIRES(Locks::mutator_lock_);
99 uint16_t GetChar(mirror::Object* object) SHARED_REQUIRES(Locks::mutator_lock_);
102 void SetChar(mirror::Object* object, uint16_t c) SHARED_REQUIRES(Locks::mutator_lock_);
104 int16_t GetShort(mirror::Object* object) SHARED_REQUIRES(Locks::mutator_lock_);
107 void SetShort(mirror::Object* object, int16_t s) SHARED_REQUIRES(Locks::mutator_lock_);
109 int32_t GetInt(mirror::Object* object) SHARED_REQUIRE
[all...]
H A Dobject_lock.cc19 #include "mirror/object-inl.h"
25 ObjectLock<T>::ObjectLock(Thread* self, Handle<T> object) : self_(self), obj_(object) { argument
26 CHECK(object.Get() != nullptr);
51 ObjectTryLock<T>::ObjectTryLock(Thread* self, Handle<T> object) : self_(self), obj_(object) { argument
52 CHECK(object.Get() != nullptr);
/art/test/973-default-multidex/smali/
H A Dconcreteclass.smali39 return-object v0
45 move-result-object v0
46 return-object v0
/art/runtime/interpreter/mterp/arm/
H A Dop_iput_quick.S2 /* For: iput-quick, iput-object-quick */
6 GET_VREG r3, r2 @ r3<- fp[B], the object pointer
8 cmp r3, #0 @ check object for null
9 beq common_errNullObject @ object was null
H A Dop_iput_wide_quick.S4 GET_VREG r2, r2 @ r2<- fp[B], the object pointer
6 cmp r2, #0 @ check object for null
7 beq common_errNullObject @ object was null
H A Dop_array_length.S6 GET_VREG r0, r1 @ r0<- vB (object ref)
7 cmp r0, #0 @ is object null?
/art/runtime/interpreter/mterp/mips64/
H A Dop_throw.S2 * Throw an exception object in the current thread.
7 GET_VREG_U a0, a2 # a0 <- vAA (exception object)
/art/runtime/interpreter/mterp/x86/
H A Dop_monitor_enter.S2 * Synchronize on an object.
10 call SYMBOL(artLockObjectFromCode) # (object, self)
H A Dop_monitor_exit.S2 * Unlock an object.
14 call SYMBOL(artUnlockObjectFromCode) # (object, self)
H A Dop_throw.S2 * Throw an exception object in the current thread.
6 GET_VREG %eax, rINST # eax<- vAA (exception object)
H A Dop_aget.S11 GET_VREG %eax, %eax # eax <- vBB (array object)
13 testl %eax, %eax # null array object?
H A Dop_aget_wide.S7 GET_VREG %eax, %eax # eax <- vBB (array object)
9 testl %eax, %eax # null array object?
H A Dop_aput.S11 GET_VREG %eax, %eax # eax <- vBB (array object)
13 testl %eax, %eax # null array object?
H A Dop_aput_wide.S8 GET_VREG %eax, %eax # eax <- vBB (array object)
10 testl %eax, %eax # null array object?
/art/test/148-multithread-gc-annotations/
H A Dgc_coverage.cc36 extern "C" JNIEXPORT jlong JNICALL Java_MovingGCThread_objectAddress(JNIEnv* env, jclass, jobject object) { argument
38 return reinterpret_cast<jlong>(soa.Decode<mirror::Object*>(object));
/art/test/972-iface-super-multidex/smali-multidex/
H A Doneconflict.smali30 return-object v0
H A Dsuperinterface.smali30 return-object v0
H A Dtwoconflict.smali30 return-object v0
/art/runtime/interpreter/mterp/mips/
H A Dop_array_length.S6 GET_VREG(a0, a1) # a0 <- vB (object ref)
7 # is object null?

Completed in 334 milliseconds

12345678