Home | History | Annotate | Download | only in mips

Lines Matching full:rpc

19    s0	rPC		interpreted program counter, used for fetching instructions
28 #define rPC s0
60 #define LOAD_PC_FROM_SELF() lw rPC, offThread_pc(rSELF)
61 #define SAVE_PC_TO_SELF() sw rPC, offThread_pc(rSELF)
72 sw rPC, (offStackSaveArea_currentPc - sizeofStackSaveArea)(rFP)
77 #define FETCH_INST() lhu rINST, (rPC)
79 #define FETCH_ADVANCE_INST(_count) lhu rINST, ((_count)*2)(rPC); \
80 addu rPC, rPC, ((_count) * 2)
86 #define FETCH_ADVANCE_INST_RB(rd) addu rPC, rPC, rd; \
87 lhu rINST, (rPC)
89 #define FETCH(rd, _count) lhu rd, ((_count) * 2)(rPC)
90 #define FETCH_S(rd, _count) lh rd, ((_count) * 2)(rPC)
94 #define FETCH_B(rd, _count) lbu rd, ((_count) * 2)(rPC)
95 #define FETCH_C(rd, _count) lbu rd, ((_count) * 2 + 1)(rPC)
99 #define FETCH_B(rd, _count) lbu rd, ((_count) * 2 + 1)(rPC)
100 #define FETCH_C(rd, _count) lbu rd, ((_count) * 2)(rPC)