Lines Matching refs:self

47   void ArtInterpreterToInterpreterBridge(Thread* self,
53 void ArtInterpreterToCompiledCodeBridge(Thread* self,
60 inline void PerformCall(Thread* self, in PerformCall() argument
70 interpreter::ArtInterpreterToInterpreterBridge(self, accessor, callee_frame, result); in PerformCall()
73 self, caller_method, callee_frame, first_dest_reg, result); in PerformCall()
76 interpreter::UnstartedRuntime::Invoke(self, accessor, callee_frame, result, first_dest_reg); in PerformCall()
81 inline void DCheckStaticState(Thread* self, T* entity) REQUIRES_SHARED(Locks::mutator_lock_) { in DCheckStaticState() argument
85 klass->AssertInitializedOrInitializingInThread(self); in DCheckStaticState()
93 static ALWAYS_INLINE bool DoFieldGetCommon(Thread* self, in DoFieldGetCommon() argument
99 DCheckStaticState(self, field); in DoFieldGetCommon()
104 StackHandleScope<1> hs(self); in DoFieldGetCommon()
105 StackArtFieldHandleScope<1> rhs(self); in DoFieldGetCommon()
113 instrumentation->FieldReadEvent(self, in DoFieldGetCommon()
118 if (UNLIKELY(self->IsExceptionPending())) { in DoFieldGetCommon()
153 ALWAYS_INLINE bool DoFieldPutCommon(Thread* self, in DoFieldPutCommon() argument
159 DCheckStaticState(self, field); in DoFieldPutCommon()
165 StackHandleScope<2> hs(self); in DoFieldPutCommon()
166 StackArtFieldHandleScope<1> rhs(self); in DoFieldPutCommon()
174 instrumentation->FieldWriteEvent(self, in DoFieldPutCommon()
180 if (UNLIKELY(self->IsExceptionPending())) { in DoFieldPutCommon()
218 StackHandleScope<2> hs(self); in DoFieldPutCommon()
219 StackArtFieldHandleScope<1> rhs(self); in DoFieldPutCommon()
233 self->ThrowNewExceptionF("Ljava/lang/InternalError;", in DoFieldPutCommon()
250 if (UNLIKELY(self->IsExceptionPending())) { in DoFieldPutCommon()