blob: 8095c25b0825b7140005d81d97a0510a7fabb42c [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 rSELF, %rcx
movq %rax, THREAD_EXCEPTION_OFFSET(%rcx)
jmp MterpException