| 694 |
#endif |
#endif |
| 695 |
} |
} |
| 696 |
|
|
| 697 |
static SLJIT_INLINE void check_sljit_fake_enter(struct sljit_compiler *compiler, int args, int temporaries, int generals, int local_size) |
static SLJIT_INLINE void check_sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int generals, int local_size) |
| 698 |
{ |
{ |
| 699 |
/* If debug and verbose are disabled, all arguments are unused. */ |
/* If debug and verbose are disabled, all arguments are unused. */ |
| 700 |
SLJIT_UNUSED_ARG(compiler); |
SLJIT_UNUSED_ARG(compiler); |
| 798 |
|| ((op & ~SLJIT_INT_OP) >= SLJIT_UDIV && (op & ~SLJIT_INT_OP) <= SLJIT_SDIV)); |
|| ((op & ~SLJIT_INT_OP) >= SLJIT_UDIV && (op & ~SLJIT_INT_OP) <= SLJIT_SDIV)); |
| 799 |
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) |
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) |
| 800 |
if (SLJIT_UNLIKELY(!!compiler->verbose)) |
if (SLJIT_UNLIKELY(!!compiler->verbose)) |
| 801 |
fprintf(compiler->verbose, " %s%s\n", op_names[GET_OPCODE(op)], !(op & SLJIT_INT_OP) ? "" : "i"); |
fprintf(compiler->verbose, " %s%s\n", !(op & SLJIT_INT_OP) ? "" : "i", op_names[GET_OPCODE(op)]); |
| 802 |
#endif |
#endif |
| 803 |
} |
} |
| 804 |
|
|
| 1233 |
return SLJIT_ERR_UNSUPPORTED; |
return SLJIT_ERR_UNSUPPORTED; |
| 1234 |
} |
} |
| 1235 |
|
|
| 1236 |
SLJIT_API_FUNC_ATTRIBUTE void sljit_fake_enter(struct sljit_compiler *compiler, int args, int temporaries, int generals, int local_size) |
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int generals, int local_size) |
| 1237 |
{ |
{ |
| 1238 |
SLJIT_UNUSED_ARG(compiler); |
SLJIT_UNUSED_ARG(compiler); |
| 1239 |
SLJIT_UNUSED_ARG(args); |
SLJIT_UNUSED_ARG(args); |