diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-22 22:55:49 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-22 22:55:49 +0100 |
| commit | dce3292fc7134d7a32ce7de0b5e5d7e7ea4beb04 (patch) | |
| tree | 6679fec30d40cd4e379b87a25feb1616f06d5dab /src/dynarec/dynablock.c | |
| parent | 98a567e102305e0b50b3330ee04e2ddc11630a8f (diff) | |
| download | box64-dce3292fc7134d7a32ce7de0b5e5d7e7ea4beb04.tar.gz box64-dce3292fc7134d7a32ce7de0b5e5d7e7ea4beb04.zip | |
[DYNAREC] Added 0F BE/BF ocpodes, and fixed LDRSB emitter
Diffstat (limited to 'src/dynarec/dynablock.c')
| -rwxr-xr-x | src/dynarec/dynablock.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dynarec/dynablock.c b/src/dynarec/dynablock.c index e92b7f0b..79a07027 100755 --- a/src/dynarec/dynablock.c +++ b/src/dynarec/dynablock.c @@ -323,8 +323,10 @@ static dynablock_t* internalDBGetBlock(x64emu_t* emu, uintptr_t addr, uintptr_t if(!created) return block; // existing block... + #if 0 if(box64_dynarec_dump) pthread_mutex_lock(&my_context->mutex_dyndump); + #endif // fill the block block->x64_addr = (void*)addr; if(!FillBlock64(block, filladdr)) { @@ -336,8 +338,10 @@ static dynablock_t* internalDBGetBlock(x64emu_t* emu, uintptr_t addr, uintptr_t free(block); block = NULL; } + #if 0 if(box64_dynarec_dump) pthread_mutex_unlock(&my_context->mutex_dyndump); + #endif // check size if(block && block->x64_size) { int blocksz = block->x64_size; |