| 427 | } |
| 428 | |
| 429 | DAS_API void * jit_alloc_persistent ( uint32_t bytes, Context * context ) { |
| 430 | if ( !bytes ) context->throw_out_of_memory(false, bytes); |
| 431 | return das_aligned_alloc16(bytes); |
| 432 | } |
| 433 | |
| 434 | DAS_API void jit_free_heap ( void * bytes, uint32_t size, Context * context ) { |
| 435 | context->free((char *)bytes,size); |
nothing calls this directly
no test coverage detected