| 1171 | } |
| 1172 | |
| 1173 | static SLJIT_INLINE void decrease_call_count(compiler_common *common) |
| 1174 | { |
| 1175 | DEFINE_COMPILER; |
| 1176 | |
| 1177 | OP2(SLJIT_SUB | SLJIT_SET_E, CALL_COUNT, 0, CALL_COUNT, 0, SLJIT_IMM, 1); |
| 1178 | add_jump(compiler, &common->calllimit, JUMP(SLJIT_C_ZERO)); |
| 1179 | } |
| 1180 | |
| 1181 | static SLJIT_INLINE void allocate_stack(compiler_common *common, int size) |
| 1182 | { |
no test coverage detected