Lines Matching defs:jump
40 words, it is possible to jump to any label from anywhere, even from
43 - Supports self modifying code: target of (conditional) jump and call
64 - It can jump to any exception handler anytime (even if it belongs
730 zero flag to jump back if the counter register is not reached zero.
747 - you cannot postpone conditional jump instructions except if noted that
1030 /* Label and jump instructions. */
1114 /* Unconditional jump types. */
1127 /* Emit a jump instruction. The destination is not set, only the type of the jump.
1161 /* Set the destination of the jump to this label. */
1162 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_label(struct sljit_jump *jump, struct sljit_label* label);
1163 /* Set the destination address of the jump to this label. */
1164 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_target(struct sljit_jump *jump, sljit_uw target);
1166 /* Call function or jump anywhere. Both direct and indirect form
1203 /* After the code generation the address for label, jump and const instructions
1207 static SLJIT_INLINE sljit_uw sljit_get_jump_addr(struct sljit_jump *jump) { return jump->addr; }