about summary refs log tree commit diff stats
path: root/src/dynarec/dynablock.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-22 22:55:49 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-22 22:55:49 +0100
commitdce3292fc7134d7a32ce7de0b5e5d7e7ea4beb04 (patch)
tree6679fec30d40cd4e379b87a25feb1616f06d5dab /src/dynarec/dynablock.c
parent98a567e102305e0b50b3330ee04e2ddc11630a8f (diff)
downloadbox64-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-xsrc/dynarec/dynablock.c4
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;