REGIMM 000001 |
rs |
BLTZAL 10000 |
offset |
6 |
5 |
5 |
16 |
BLTZAL rs, offset |
MIPS32, removed in Release 6 |
Branch on Less Than Zero and Link |
Branch on Less Than Zero and Link
To test a GPR then do a PC-relative conditional procedure call.
if GPR[rs] < 0 then procedure_call
Place the return address link in GPR 31. The return link is the address of the second instruction following the branch, where execution continues after a procedure call.
An 18-bit signed offset (the 16-bit offset field shifted left 2 bits) is added to the address of the instruction following the branch (not the branch itself), in the branch delay slot, to form a PC-relative effective target address.
If the contents of GPR rs are less than zero (sign bit is 1), branch to the effective target address after the instruction in the delay slot is executed.
This instruction has been removed in Release 6.
The special case BLTZAL r0, offset, has been retained as NAL in Release 6.
Processor operation is UNPREDICTABLE if a branch, jump, ERET, DERET, or WAIT instruction is placed in the delay slot of a branch or jump.
Branch-and-link Restartability: GPR 31 must not be used for the source register rs, because such an instruction does
not have the same effect when re-executed. The result of executing such an instruction is UNPREDICTABLE. This restriction permits an exception handler to resume execution by re-executing the branch when an exception occurs in the branch delay slot.
I: target_offset = sign_extend(offset || 02) condition = GPR[rs] < 0GPRLEN GPR[31] = PC + 8 I+1: if condition then PC = PC + target_offset endif
None
With the 18-bit signed instruction offset, the conditional branch range is ± 128 KBytes. Use jump and link (JAL) or jump and link register (JALR) instructions for procedure calls to addresses outside this range.