Lines Matching defs:insn
409 uint32_t insn[3], *stubptr;
460 * First, build an LDA insn to adjust the low 16
463 insn[insncnt++] = 0x08 << 26 | 27 << 21 | 27 << 16 |
476 insn[insncnt++] = 0x09 << 26 | 27 << 21 |
506 insn[insncnt++] = 0x09 << 26 | 27 << 21 |
512 insn[insncnt++] = 0x29 << 26 | 27 << 21 |
519 * Now, build a JMP or BR insn to jump to the target. If
521 * we can use the more efficient BR insn. Otherwise, we
527 insn[insncnt++] = 0x30 << 26 | 31 << 21 |
531 insn[insncnt++] = 0x1a << 26 | 31 << 21 |
539 * Until we have overwritten the first insn (an unconditional
545 stubptr[insncnt] = insn[insncnt];
548 * Commit the tail of the insn sequence to memory
549 * before overwriting the first insn.
552 stubptr[0] = insn[0];