Home | History | Annotate | Download | only in mips
      1     /* (stub) */
      2     SAVE_PC_TO_SELF()            # only need to export PC and FP
      3     SAVE_FP_TO_SELF()
      4     move        a0, rSELF        # self is first arg to function
      5     JAL(dvmMterp_${opcode})      # call
      6     LOAD_PC_FROM_SELF()          # retrieve updated values
      7     LOAD_FP_FROM_SELF()
      8     FETCH_INST()                 # load next instruction from rPC
      9     GET_INST_OPCODE(t0)          # ...trim down to just the opcode
     10     GOTO_OPCODE(t0)              # ...and jump to the handler
     11