Home | History | Annotate | Download | only in mips

Lines Matching full:rpc

38    s0	rPC		interpreted program counter, used for fetching instructions
112 #define rPC s0
144 #define LOAD_PC_FROM_SELF() lw rPC, offThread_pc(rSELF)
145 #define SAVE_PC_TO_SELF() sw rPC, offThread_pc(rSELF)
150 sw rPC, (offStackSaveArea_currentPc - sizeofStackSaveArea)(rFP)
155 #define FETCH_INST() lhu rINST, (rPC)
157 #define FETCH_ADVANCE_INST(_count) lhu rINST, (_count*2)(rPC); \
158 addu rPC, rPC, (_count * 2)
160 #define FETCH_ADVANCE_INST_RB(rd) addu rPC, rPC, rd; \
161 lhu rINST, (rPC)
163 #define FETCH(rd, _count) lhu rd, (_count * 2)(rPC)
164 #define FETCH_S(rd, _count) lh rd, (_count * 2)(rPC)
168 #define FETCH_B(rd, _count) lbu rd, (_count * 2)(rPC)
169 #define FETCH_C(rd, _count) lbu rd, (_count * 2 + 1)(rPC)
173 #define FETCH_B(rd, _count) lbu rd, (_count * 2 + 1)(rPC)
174 #define FETCH_C(rd, _count) lbu rd, (_count * 2)(rPC)