Lines Matching refs:jumps
207 /* List of jumps to this insn. */
320 grow_jumps(struct sljit_jump ***jumps, size_t *size)
334 memcpy(newptr, *jumps, old_size * elemsz);
335 BJ_FREE(*jumps, old_size * elemsz);
337 *jumps = newptr;
343 append_jump(struct sljit_jump *jump, struct sljit_jump ***jumps,
346 if (*size == *max_size && !grow_jumps(jumps, max_size))
349 (*jumps)[(*size)++] = jump;
1273 * terminate a block. Blocks are linear, that is, there are no jumps out
1274 * from the middle of a block and there are no jumps in to the middle of
1701 /* a list of jumps to out-of-bound return from a generated function */
1749 * Resolve jumps to the current insn.