Lines Matching refs:__gregs
42 ucp->uc_mcontext.__gregs[REG_RA] = 0; in __makecontext()
43 ucp->uc_mcontext.__gregs[REG_S0] = 0; in __makecontext()
44 ucp->uc_mcontext.__gregs[REG_S1] = (long int) func; in __makecontext()
45 ucp->uc_mcontext.__gregs[REG_S2] = (long int) ucp->uc_link; in __makecontext()
46 ucp->uc_mcontext.__gregs[REG_SP] = sp; in __makecontext()
47 ucp->uc_mcontext.__gregs[REG_PC] = (long int) &__start_context; in __makecontext()
50 ucp->uc_mcontext.__gregs[REG_A0 + 0] = a0; in __makecontext()
51 ucp->uc_mcontext.__gregs[REG_A0 + 1] = a1; in __makecontext()
52 ucp->uc_mcontext.__gregs[REG_A0 + 2] = a2; in __makecontext()
53 ucp->uc_mcontext.__gregs[REG_A0 + 3] = a3; in __makecontext()
54 ucp->uc_mcontext.__gregs[REG_A0 + 4] = a4; in __makecontext()
63 ucp->uc_mcontext.__gregs[REG_A0 + i] = va_arg (vl, long); in __makecontext()
69 ucp->uc_mcontext.__gregs[REG_SP] = sp; in __makecontext()