Lines Matching refs:soa
70 ScopedObjectAccess soa(env); in Java_Main_hasOatFile() local
72 ObjPtr<mirror::Class> klass = soa.Decode<mirror::Class>(cls); in Java_Main_hasOatFile()
81 ScopedObjectAccess soa(env); in Java_Main_getCompilerFilter() local
83 ObjPtr<mirror::Class> klass = soa.Decode<mirror::Class>(cls); in Java_Main_getCompilerFilter()
92 return soa.AddLocalReference<jobject>( in Java_Main_getCompilerFilter()
93 mirror::String::AllocFromModifiedUtf8(soa.Self(), filter.c_str())); in Java_Main_getCompilerFilter()
121 ScopedObjectAccess soa(env); in Java_Main_compiledWithOptimizing() local
123 ObjPtr<mirror::Class> klass = soa.Decode<mirror::Class>(cls); in Java_Main_compiledWithOptimizing()
172 ScopedObjectAccess soa(self); in Java_Main_isAotCompiled() local
175 ArtMethod* method = soa.Decode<mirror::Class>(cls)->FindDeclaredDirectMethodByName( in Java_Main_isAotCompiled()
185 static ArtMethod* GetMethod(ScopedObjectAccess& soa, jclass cls, const ScopedUtfChars& chars) in GetMethod() argument
188 ArtMethod* method = soa.Decode<mirror::Class>(cls)->FindDeclaredDirectMethodByName( in GetMethod()
191 method = soa.Decode<mirror::Class>(cls)->FindDeclaredVirtualMethodByName( in GetMethod()
207 ScopedObjectAccess soa(self); in Java_Main_hasJitCompiledEntrypoint() local
209 ArtMethod* method = GetMethod(soa, cls, chars); in Java_Main_hasJitCompiledEntrypoint()
224 ScopedObjectAccess soa(self); in Java_Main_hasJitCompiledCode() local
226 ArtMethod* method = GetMethod(soa, cls, chars); in Java_Main_hasJitCompiledCode()
241 ScopedObjectAccess soa(self); in ForceJitCompiled() local
277 ScopedObjectAccess soa(self); in ForceJitCompiled() local
282 ScopedObjectAccess soa(self); in ForceJitCompiled() local
318 ScopedObjectAccess soa(self); in Java_Main_ensureMethodJitCompiled() local
319 method = ArtMethod::FromReflectedMethod(soa, meth); in Java_Main_ensureMethodJitCompiled()
336 ScopedObjectAccess soa(self); in Java_Main_ensureJitCompiled() local
339 method = GetMethod(soa, cls, chars); in Java_Main_ensureJitCompiled()
356 ScopedObjectAccess soa(self); in Java_Main_ensureJitBaselineCompiled() local
359 method = GetMethod(soa, cls, chars); in Java_Main_ensureJitBaselineCompiled()
369 ScopedObjectAccess soa(Thread::Current()); in Java_Main_hasSingleImplementation() local
372 method = soa.Decode<mirror::Class>(cls)->FindDeclaredVirtualMethodByName( in Java_Main_hasSingleImplementation()
381 ScopedObjectAccess soa(Thread::Current()); in Java_Main_getHotnessCounter() local
385 soa.Decode<mirror::Class>(cls)->FindDeclaredDirectMethodByName(chars.c_str(), in Java_Main_getHotnessCounter()
391 method = soa.Decode<mirror::Class>(cls)->FindDeclaredVirtualMethodByName(chars.c_str(), in Java_Main_getHotnessCounter()
413 ScopedObjectAccess soa(Thread::Current()); in Java_Main_fetchProfiles() local
457 ScopedObjectAccess soa(self); in Java_Main_deoptimizeNativeMethod() local
459 ArtMethod* method = GetMethod(soa, cls, chars); in Java_Main_deoptimizeNativeMethod()
474 ScopedObjectAccess soa(env); in Java_Main_genericFieldOffset() local
480 ScopedObjectAccess soa(env); in Java_Main_isObsoleteObject() local
481 return soa.Decode<mirror::Class>(c)->IsObsoleteObject(); in Java_Main_isObsoleteObject()
486 ScopedObjectAccess soa(env); in Java_Main_forceInterpreterOnThread() local
487 MutexLock thread_list_mu(soa.Self(), *Locks::thread_list_lock_); in Java_Main_forceInterpreterOnThread()
488 soa.Self()->IncrementForceInterpreterCount(); in Java_Main_forceInterpreterOnThread()
504 ScopedObjectAccess soa(env); in Java_Main_isInImageSpace() local
506 ObjPtr<mirror::Class> klass = soa.Decode<mirror::Class>(cls); in Java_Main_isInImageSpace()
538 ScopedObjectAccess soa(env); in GetMethodHotnessFromProfile() local
539 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method); in GetMethodHotnessFromProfile()
570 ScopedObjectAccess soa(env); in Java_Main_hasInlineCacheInProfile() local
572 soa.Decode<mirror::ObjectArray<mirror::Class>>(target_types); in Java_Main_hasInlineCacheInProfile()
594 ScopedObjectAccess soa(env); in Java_Main_getCurrentGcNum() local
611 ScopedObjectAccess soa(env); in Java_Main_removeJitCompiledMethod() local
612 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, java_method); in Java_Main_removeJitCompiledMethod()