blob: 22ed9906450b310de0654943f6ede8552de69d2b [file] [log] [blame]
/*
* Throw an exception object in the current thread.
*/
/* throw vAA */
EXPORT_PC
GET_VREG %eax, rINSTq # eax<- vAA (exception object)
testb %al, %al
jz common_errNullObject
movq %rax, THREAD_EXCEPTION_OFFSET(rSELF)
jmp MterpException