| 573 |
#define SLJIT_C_FLOAT_NOT_NAN 21 |
#define SLJIT_C_FLOAT_NOT_NAN 21 |
| 574 |
|
|
| 575 |
#define SLJIT_JUMP 22 |
#define SLJIT_JUMP 22 |
| 576 |
#define SLJIT_CALL0 23 |
#define SLJIT_FAST_CALL 23 |
| 577 |
#define SLJIT_CALL1 24 |
#define SLJIT_CALL0 24 |
| 578 |
#define SLJIT_CALL2 25 |
#define SLJIT_CALL1 25 |
| 579 |
#define SLJIT_CALL3 26 |
#define SLJIT_CALL2 26 |
| 580 |
|
#define SLJIT_CALL3 27 |
| 581 |
|
|
| 582 |
/* Fast calling method. See sljit_emit_fast_enter / sljit_emit_fast_return. */ |
/* Fast calling method. See sljit_emit_fast_enter / sljit_emit_fast_return. */ |
|
#define SLJIT_FAST_CALL SLJIT_CALL0 |
|
| 583 |
|
|
| 584 |
/* The target can be changed during runtime (see: sljit_set_jump_addr). */ |
/* The target can be changed during runtime (see: sljit_set_jump_addr). */ |
| 585 |
#define SLJIT_REWRITABLE_JUMP 0x1000 |
#define SLJIT_REWRITABLE_JUMP 0x1000 |
| 705 |
since the growth ratio can be added to the current limit, and sljit_stack_resize |
since the growth ratio can be added to the current limit, and sljit_stack_resize |
| 706 |
will do all the necessary checks. The fields of the stack are not changed if |
will do all the necessary checks. The fields of the stack are not changed if |
| 707 |
sljit_stack_resize fails. */ |
sljit_stack_resize fails. */ |
| 708 |
sljit_w SLJIT_CALL sljit_stack_resize(struct sljit_stack* stack, sljit_w new_limit); |
sljit_w SLJIT_CALL sljit_stack_resize(struct sljit_stack* stack, sljit_uw new_limit); |
| 709 |
|
|
| 710 |
#endif /* (defined SLJIT_UTIL_STACK && SLJIT_UTIL_STACK) */ |
#endif /* (defined SLJIT_UTIL_STACK && SLJIT_UTIL_STACK) */ |
| 711 |
|
|