Home
last modified time | relevance | path

Searched refs:exception (Results 76 – 100 of 165) sorted by relevance

1234567

/art/test/083-compiler-regressions/
Dinfo.txt10 2487514 Missed exception in PriorityBlockingQueueTest.testToArray1_BadArg
/art/test/800-smali/smali/
Db_22080519.smali20 move-exception v3
Db_20843113.smali22 move-exception v0 # Overwrite the (last) "this" register. This should be
Db_121245951_3.smali25 move-exception v0
/art/runtime/interpreter/mterp/x86_64/
Darray.S135 testb %al, %al # 0 means an exception is thrown
153 testb %al, %al # 0 means an exception is thrown
176 testb %al, %al # 0 means an exception is thrown
/art/test/1954-pop-frame-jit/
Dexpected.txt31 Test stopped during Method Exit due to exception thrown in same function
34 Test stopped during Method Exit due to exception thrown in subroutine
37 Test stopped during notifyFramePop without exception on pop of calledFunction
40 Test stopped during notifyFramePop without exception on pop of doNothing
43 Test stopped during notifyFramePop with exception on pop of calledFunction
47 Test stopped during notifyFramePop with exception on pop of doThrow
/art/test/1955-pop-frame-jit-called/
Dexpected.txt31 Test stopped during Method Exit due to exception thrown in same function
34 Test stopped during Method Exit due to exception thrown in subroutine
37 Test stopped during notifyFramePop without exception on pop of calledFunction
40 Test stopped during notifyFramePop without exception on pop of doNothing
43 Test stopped during notifyFramePop with exception on pop of calledFunction
47 Test stopped during notifyFramePop with exception on pop of doThrow
/art/test/1956-pop-frame-jit-calling/
Dexpected.txt31 Test stopped during Method Exit due to exception thrown in same function
34 Test stopped during Method Exit due to exception thrown in subroutine
37 Test stopped during notifyFramePop without exception on pop of calledFunction
40 Test stopped during notifyFramePop without exception on pop of doNothing
43 Test stopped during notifyFramePop with exception on pop of calledFunction
47 Test stopped during notifyFramePop with exception on pop of doThrow
/art/test/435-try-finally-without-catch/
Dinfo.txt9 that clever regarding exception handling: if the divisor is known to
11 still emit a block with the exception catching and rethrowing
/art/test/161-final-abstract-class/smali/
DMain.smali76 move-exception p0
87 move-exception p0
134 move-exception p0
145 move-exception p0
/art/test/064-field-access/
Dinfo.txt2 should be thrown, but doesn't say which exception previals when two or
/art/test/1929-exception-catch-exception/smali/art/
DTest1929$Impl.smali15 # The standard dx/d8 would leave the move-exception instructions outside of either catch
65 # This try needs to include the move-exception
67 move-exception v0
140 move-exception v0
224 # This try needs to include the move-exception
226 move-exception v0
299 move-exception v0
/art/test/1924-frame-pop-toggle/src/art/
DTest1924.java33 public static void handleFramePop(Executable m, boolean exception, long location) { in handleFramePop() argument
35 m + " pop. Line=" + Breakpoint.locationToLine(m, location) + " exception:" + exception); in handleFramePop()
/art/test/1923-frame-pop/src/art/
DTest1923.java33 public static void handleFramePop(Executable m, boolean exception, long location) { in handleFramePop() argument
35 m + " pop. Line=" + Breakpoint.locationToLine(m, location) + " exception:" + exception); in handleFramePop()
/art/test/952-invoke-custom/
Dexpected.txt1 Caught exception from uninitialized call site
2 Caught exception from uninitialized call site
/art/test/1926-missed-frame-pop/src/art/
DTest1926.java33 public static void handleFramePop(Executable m, boolean exception, long location) { in handleFramePop() argument
35 m + " pop. Line=" + Breakpoint.locationToLine(m, location) + " exception:" + exception); in handleFramePop()
/art/runtime/interpreter/mterp/x86/
Darray.S166 testb %al, %al # 0 means an exception is thrown
187 testb %al, %al # 0 means an exception is thrown
213 testb %al, %al # 0 means an exception is thrown
/art/test/956-methodhandles/
Dexpected.txt6 Received WrongMethodTypeException exception
/art/runtime/
Dthread.cc260 ObjPtr<mirror::Throwable> exception, in PushDeoptimizationContext() argument
267 exception, in PushDeoptimizationContext()
274 ObjPtr<mirror::Throwable>* exception, in PopDeoptimizationContext() argument
281 *exception = record->GetPendingException(); in PopDeoptimizationContext()
2507 ScopedLocalRef<jthrowable> exception(tlsPtr_.jni_env, tlsPtr_.jni_env->ExceptionOccurred()); in HandleUncaughtExceptions() local
2513 exception.get()); in HandleUncaughtExceptions()
2848 bool Thread::IsExceptionThrownByCurrentMethod(ObjPtr<mirror::Throwable> exception) const { in IsExceptionThrownByCurrentMethod()
2852 return count_visitor.GetDepth() == static_cast<uint32_t>(exception->GetStackDepth()); in IsExceptionThrownByCurrentMethod()
3214 Handle<mirror::Throwable> exception( in ThrowNewWrappedException() local
3218 if (exception == nullptr) { in ThrowNewWrappedException()
[all …]
Dquick_exception_handler.h52 void FindCatch(ObjPtr<mirror::Throwable> exception) REQUIRES_SHARED(Locks::mutator_lock_);
/art/runtime/interpreter/mterp/arm/
Dcontrol_flow.S205 GET_VREG r1, r2 @ r1<- vAA (exception object)
208 str r1, [rSELF, #THREAD_EXCEPTION_OFFSET] @ thread->exception<- obj
/art/test/682-double-catch-phi/smali/
DDoubleCatchPhi.smali39 move-exception v3
/art/compiler/utils/arm64/
Djni_macro_assembler_arm64.cc48 for (const std::unique_ptr<Arm64Exception>& exception : exception_blocks_) { in FinalizeCode() local
49 EmitExceptionPoll(exception.get()); in FinalizeCode()
760 void Arm64JNIMacroAssembler::EmitExceptionPoll(Arm64Exception* exception) { in EmitExceptionPoll() argument
762 temps.Exclude(exception->scratch_); in EmitExceptionPoll()
765 ___ Bind(exception->Entry()); in EmitExceptionPoll()
766 if (exception->stack_adjust_ != 0) { // Fix up the frame. in EmitExceptionPoll()
767 DecreaseFrameSize(exception->stack_adjust_); in EmitExceptionPoll()
771 ___ Mov(reg_x(X0), exception->scratch_); in EmitExceptionPoll()
/art/runtime/entrypoints/
Dentrypoint_utils.cc129 ObjPtr<mirror::Throwable> exception = soa.Self()->GetException(); in InvokeProxyInvocationHandler() local
130 if (exception->IsCheckedException()) { in InvokeProxyInvocationHandler()
149 ObjPtr<mirror::Class> exception_class = exception->GetClass(); in InvokeProxyInvocationHandler()
/art/test/1970-force-early-return-long/
Dexpected.txt49 Test stopped during Method Exit due to exception thrown in same function
51 Uncaught exception in thread Thread[Test1970 target thread - 16,5,main] - art.Test1970$ExceptionOnc…
61 Test stopped during Method Exit due to exception thrown in subroutine
63 Uncaught exception in thread Thread[Test1970 target thread - 18,5,main] - art.Test1970$ExceptionOnc…
74 Test stopped during notifyFramePop with exception on pop of calledFunction
81 Test stopped during notifyFramePop with exception on pop of doThrow

1234567