Home | History | Annotate | Download | only in mips

Lines Matching defs:jal

538   return opcode == J || opcode == JAL ||
552 return GetOpcodeField(instr) == JAL;
1419 void Assembler::jal(int32_t target) {
1428 GenInstrJump(JAL, target >> 2);
1459 jal(target);
2612 // is faster to do a direct jal, or j, rather than jump thru register, since
2614 // time the address above is patched, we have to patch the direct jal/j
2616 // 256 MB page. Note that with the jal/j instructions, we do not need to
2647 // Try to convert JALR to JAL.
2649 *(p + 2) = JAL | target_field;
2661 // We are patching an already converted JAL.
2662 *(p + 2) = JAL | target_field;
2664 // Patch JAL, but out of range, revert to JALR.