| 63 |
return code_ptr; |
return code_ptr; |
| 64 |
} |
} |
| 65 |
|
|
| 66 |
int sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int generals, int local_size) |
SLJIT_API_FUNC_ATTRIBUTE int sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int generals, int local_size) |
| 67 |
{ |
{ |
| 68 |
int size; |
int size; |
| 69 |
sljit_ub *buf; |
sljit_ub *buf; |
| 156 |
return SLJIT_SUCCESS; |
return SLJIT_SUCCESS; |
| 157 |
} |
} |
| 158 |
|
|
| 159 |
void sljit_fake_enter(struct sljit_compiler *compiler, int args, int temporaries, int generals, int local_size) |
SLJIT_API_FUNC_ATTRIBUTE void sljit_fake_enter(struct sljit_compiler *compiler, int args, int temporaries, int generals, int local_size) |
| 160 |
{ |
{ |
| 161 |
CHECK_ERROR_VOID(); |
CHECK_ERROR_VOID(); |
| 162 |
check_sljit_fake_enter(compiler, args, temporaries, generals, local_size); |
check_sljit_fake_enter(compiler, args, temporaries, generals, local_size); |
| 173 |
compiler->local_size += (generals - 3) * sizeof(sljit_uw); |
compiler->local_size += (generals - 3) * sizeof(sljit_uw); |
| 174 |
} |
} |
| 175 |
|
|
| 176 |
int sljit_emit_return(struct sljit_compiler *compiler, int src, sljit_w srcw) |
SLJIT_API_FUNC_ATTRIBUTE int sljit_emit_return(struct sljit_compiler *compiler, int src, sljit_w srcw) |
| 177 |
{ |
{ |
| 178 |
int size; |
int size; |
| 179 |
sljit_ub *buf; |
sljit_ub *buf; |
| 435 |
return SLJIT_SUCCESS; |
return SLJIT_SUCCESS; |
| 436 |
} |
} |
| 437 |
|
|
| 438 |
int sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw, int args, int temporaries, int generals, int local_size) |
SLJIT_API_FUNC_ATTRIBUTE int sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw, int args, int temporaries, int generals, int local_size) |
| 439 |
{ |
{ |
| 440 |
sljit_ub *buf; |
sljit_ub *buf; |
| 441 |
|
|
| 479 |
return SLJIT_SUCCESS; |
return SLJIT_SUCCESS; |
| 480 |
} |
} |
| 481 |
|
|
| 482 |
int sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) |
SLJIT_API_FUNC_ATTRIBUTE int sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) |
| 483 |
{ |
{ |
| 484 |
sljit_ub *buf; |
sljit_ub *buf; |
| 485 |
|
|