Home
last modified time | relevance | path

Searched refs:exception (Results 126 – 150 of 165) sorted by relevance

1234567

/art/compiler/utils/arm/
Djni_macro_assembler_arm_vixl.h203 void EmitExceptionPoll(ArmVIXLJNIMacroAssembler::ArmException *exception);
/art/runtime/interpreter/
Dinterpreter_common.cc158 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); in MoveToExceptionHandler() local
161 self->IsExceptionThrownByCurrentMethod(exception.Get())) { in MoveToExceptionHandler()
163 instrumentation->ExceptionThrownEvent(self, exception.Get()); in MoveToExceptionHandler()
172 hs.NewHandle(exception->GetClass()), shadow_frame.GetDexPC(), &clear_exception); in MoveToExceptionHandler()
196 instrumentation->ExceptionHandledEvent(self, exception.Get()); in MoveToExceptionHandler()
201 self->SetException(exception.Get()); in MoveToExceptionHandler()
/art/runtime/interpreter/mterp/x86_64/
Dobject.S210 testb %al, %al # 0 means an exception is thrown
Dother.S171 SET_VREG_OBJECT %eax, rINSTq # fp[AA] <- exception object
/art/runtime/
Dart_method.cc271 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); in FindCatchBlock() local
306 if (exception != nullptr) { in FindCatchBlock()
307 self->SetException(exception.Get()); in FindCatchBlock()
Dentrypoints_order_test.cc84 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, card_table, exception, sizeof(void*)); in CheckThreadOffsets()
85 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, exception, stack_end, sizeof(void*)); in CheckThreadOffsets()
Dinstrumentation.cc121 MutableHandle<mirror::Throwable>& exception) { in PopFramesTo() argument
130 LOG(INFO) << "Popping frames for exception " << exception->Dump(); in PopFramesTo()
133 self_->SetException(exception.Get()); in PopFramesTo()
152 new_exception_thrown = self_->GetException() != exception.Get(); in PopFramesTo()
162 exception.Assign(self_->GetException()); in PopFramesTo()
Druntime.cc556 mirror::Throwable* exception = self->GetException(); in DumpThread() local
557 os << "Pending exception " << exception->Dump(); in DumpThread()
836 for (GcRoot<mirror::Throwable>* exception : exceptions) { in RunRootClinits()
838 Handle<mirror::Class> klass = hs.NewHandle<mirror::Class>(exception->Read()->GetClass()); in RunRootClinits()
1161 GcRoot<mirror::Throwable>* exception, in CreatePreAllocatedException() argument
1174 *exception = GcRoot<mirror::Throwable>(exception_object); in CreatePreAllocatedException()
1182 detailMessageField->SetObject</* kTransactionActive= */ false>(exception->Read(), message); in CreatePreAllocatedException()
/art/test/954-invoke-polymorphic-verifier/smali/
DMain.smali72 move-exception v3
/art/runtime/interpreter/mterp/x86_64ng/
Dother.S151 SET_VREG_OBJECT %eax, rINSTq # fp[AA] <- exception object
/art/openjdkjvmti/
Devents.cc926 art::Handle<art::mirror::Throwable> exception, in FindCatchMethodsFromThrow() argument
986 hs.NewHandle(exception->GetClass()), in FindCatchMethodsFromThrow()
1008 ScopedLocalRef<jobject> exception(jnienv, in ExceptionThrown() local
1016 exception.get(), in ExceptionThrown()
1034 ScopedLocalRef<jobject> exception(jnienv, in ExceptionHandled() local
1042 exception.get()); in ExceptionHandled()
Dti_thread.cc1080 jobject exception) { in StopThread() argument
1084 if (exception == nullptr) { in StopThread()
1087 art::ObjPtr<art::mirror::Object> obj(soa.Decode<art::mirror::Object>(exception)); in StopThread()
/art/compiler/utils/arm64/
Djni_macro_assembler_arm64.h203 void EmitExceptionPoll(Arm64Exception *exception);
/art/runtime/interpreter/mterp/
DREADME.txt81 unconditionally refresh rIBASE at backward branches, exception throws and returns.
/art/runtime/interpreter/mterp/arm/
Dother.S227 SET_VREG_OBJECT r3, r2 @ fp[AA]<- exception obj
229 str r1, [rSELF, #THREAD_EXCEPTION_OFFSET] @ clear exception
Dobject.S184 cmp r1, #0 @ exception pending?
/art/dex2oat/driver/
Dcompiler_driver.cc1583 mirror::Throwable* exception = self->GetException(); in CheckAndClearResolveException() local
1585 const char* descriptor = exception->GetClass()->GetDescriptor(&temp); in CheckAndClearResolveException()
1605 LOG(FATAL) << "Unexpected exception " << exception->Dump(); in CheckAndClearResolveException()
1750 mirror::Throwable* exception = soa.Self()->GetException(); in Visit() local
1751 VLOG(compiler) << "Exception during type resolution: " << exception->Dump(); in Visit()
1752 if (exception->GetClass()->DescriptorEquals("Ljava/lang/OutOfMemoryError;")) { in Visit()
2360 mirror::Throwable* exception = soa.Self()->GetException(); in TryInitializeClass() local
2362 << exception->Dump(); in TryInitializeClass()
2367 *file_log << exception->Dump() << "\n"; in TryInitializeClass()
/art/test/
DAndroid.bp387 "1927-exception-event/exception_event.cc",
763 "1927-exception-event/src/art/Test1927.java",
764 "1928-exception-event-exception/src/art/Test1928.java",
901 "1927-exception-event/expected.txt",
902 "1928-exception-event-exception/expected.txt",
/art/test/1932-monitor-events-misc/src/art/
DTest1932.java110 public static void printLockState(Monitors.NamedLock lk, Object exception, int res) { in printLockState() argument
114 printExceptions((Throwable)exception); in printLockState()
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S667 @ save callee saves in case exception allocation triggers GC
945 cbnz r2, 1f @ success if no exception pending
971 cbnz r2, 1f @ success if no exception pending
1439 cbnz r2, 1f @ success if no exception is pending
1564 cbz r0, 1f @ is code pointer null? goto exception
1682 cbnz r2, 1f @ success if no exception is pending
/art/runtime/jni/
Djni_internal.cc429 ScopedLocalRef<jthrowable> exception( in ThrowNewException() local
431 if (exception.get() == nullptr) { in ThrowNewException()
435 soa.Self()->SetException(soa.Decode<mirror::Throwable>(exception.get())); in ThrowNewException()
590 ObjPtr<mirror::Throwable> exception = soa.Decode<mirror::Throwable>(java_exception); in Throw() local
591 if (exception == nullptr) { in Throw()
594 soa.Self()->SetException(exception); in Throw()
624 ScopedLocalRef<jthrowable> exception(env, in ExceptionDescribe() local
626 ScopedLocalRef<jclass> exception_class(env, env->GetObjectClass(exception.get())); in ExceptionDescribe()
632 env->CallVoidMethod(exception.get(), mid); in ExceptionDescribe()
644 ObjPtr<mirror::Object> exception = soa.Self()->GetException(); in ExceptionOccurred() local
[all …]
Djni_internal_test.cc65 jthrowable exception = env_->ExceptionOccurred(); in ExpectException() local
66 EXPECT_NE(nullptr, exception); in ExpectException()
68 EXPECT_TRUE(env_->IsInstanceOf(exception, exception_class)); in ExpectException()
2215 jthrowable exception = reinterpret_cast<jthrowable>(env_->AllocObject(exception_class)); in TEST_F() local
2216 ASSERT_TRUE(exception != nullptr); in TEST_F()
2218 EXPECT_EQ(JNI_OK, env_->Throw(exception)); in TEST_F()
2222 EXPECT_TRUE(env_->IsSameObject(exception, thrown_exception)); in TEST_F()
/art/runtime/interpreter/mterp/x86/
Dother.S198 SET_VREG_OBJECT %eax, rINST # fp[AA] <- exception object
/art/test/VerifierDeps/
DMain.smali187 move-exception v0
201 move-exception v0
/art/openjdkjvmti/include/
Djvmti.h780 jobject exception,
790 jobject exception);
1033 jobject exception);
1835 jobject exception) { in StopThread()
1836 return functions->StopThread(this, thread, exception); in StopThread()

1234567