| 1761 | } |
| 1762 | |
| 1763 | static SLJIT_INLINE void decrease_call_count(compiler_common *common) |
| 1764 | { |
| 1765 | DEFINE_COMPILER; |
| 1766 | |
| 1767 | OP2(SLJIT_SUB | SLJIT_SET_E, CALL_COUNT, 0, CALL_COUNT, 0, SLJIT_IMM, 1); |
| 1768 | add_jump(compiler, &common->calllimit, JUMP(SLJIT_C_ZERO)); |
| 1769 | } |
| 1770 | |
| 1771 | static SLJIT_INLINE void allocate_stack(compiler_common *common, int size) |
| 1772 | { |
no test coverage detected