1/* 2 * Inter-instruction transfer stub. Call out to MterpCheckBefore to handle 3 * any interesting requests and then jump to the real instruction 4 * handler. Note that the call to MterpCheckBefore is done as a tail call. 5 */ 6 .extern MterpCheckBefore 7 EXPORT_PC 8 REFRESH_IBASE 9 dla ra, artMterpAsmInstructionStart 10 dla t9, MterpCheckBefore 11 move a0, rSELF 12 daddu a1, rFP, OFF_FP_SHADOWFRAME 13 daddu ra, ra, (${opnum} * 128) # Addr of primary handler. 14 jalr zero, t9 # (self, shadow_frame) Note: tail call. 15