Improved log text for JIT cache allocation
This commit is contained in:
parent
69a7d122dc
commit
a69454f2b2
1 changed files with 61 additions and 61 deletions
|
@ -1723,7 +1723,7 @@ void alloc_cache(void)
|
|||
compiled_code = popallspace + POPALLSPACE_SIZE;
|
||||
|
||||
if (compiled_code) {
|
||||
write_log("Actual translation cache size : %d KB at %p-%p\n", cache_size, compiled_code, compiled_code + cache_size*1024);
|
||||
write_log("<JIT compiler> : actual translation cache size : %d KB at %p-%p\n", cache_size, compiled_code, compiled_code + cache_size * 1024);
|
||||
#if defined(CPU_arm) && !defined(ARMV6T2) && !defined(CPU_AARCH64)
|
||||
max_compile_start = compiled_code + cache_size * 1024 - BYTES_PER_INST - DATA_BUFFER_SIZE;
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue