Lines Matching refs:RSval
76 --- BEQ --- if RSval == RTval then out = RDval + 1 else out = RDval + 6
93 --- BNE --- if RSval != RTval then out = RDval + 1 else out = RDval + 6
110 --- BEQZ --- if RSval == 0 then out = RDval + 1 else out = RDval + 6
127 --- BGEZ --- if RSval >= 0 then out = RDval + 1 else out = RDval + 6
144 --- BGTZ --- if RSval > 0 then out = RDval + 1 else out = RDval + 6
161 --- BLEZ --- if RSval <= 0 then out = RDval + 1 else out = RDval + 6
178 --- BLTZ --- if RSval < 0 then out = RDval + 1 else out = RDval + 6
195 --- BGEZAL --- if RSval >= 0 then out = RDval + 6 else out = RDval + 5
212 --- BLTZAL --- if RSval < 0 then out = RDval + 6 else out = RDval + 5
229 --- BNEZ --- if RSval != 0 then out = RDval + 1 else out = RDval + 6
246 --- BEQL --- if RSval == RTval then out = RDval + 4 else out = RDval + 6
263 --- BGEZALL --- if RSval >= 0 then out = RDval + 4 else out = RDval + 6
280 --- BLTZALL --- if RSval < 0 then out = RDval + 4 else out = RDval + 6
297 --- BGEZL --- if RSval >= 0 then out = RDval + 4 else out = RDval + 6
314 --- BGTZL --- if RSval > 0 then out = RDval + 4 else out = RDval + 6
331 --- BLEZL --- if RSval <= 0 then out = RDval + 4 else out = RDval + 6
348 --- BGEZALL --- if RSval >= 0 then out = RDval + 9 else out = RDval + 5
365 --- BLTZL --- if RSval < 0 then out = RDval + 4 else out = RDval + 6
382 --- BNEL --- if RSval != RTval then out = RDval + 4 else out = RDval + 5