Home | History | Annotate | Download | only in mips

Lines Matching defs:jal

538   return opcode == J || opcode == JAL ||
552 return GetOpcodeField(instr) == JAL;
1149 void Assembler::jal(int32_t target) {
1157 GenInstrJump(JAL, target >> 2);
1188 jal(target);
2178 // is faster to do a direct jal, or j, rather than jump thru register, since
2180 // time the address above is patched, we have to patch the direct jal/j
2182 // 256 MB page. Note that with the jal/j instructions, we do not need to
2213 // Try to convert JALR to JAL.
2215 *(p+2) = JAL | target_field;
2227 // We are patching an already converted JAL.
2228 *(p+2) = JAL | target_field;
2230 // Patch JAL, but out of range, revert to JALR.