about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/debug.h2
-rw-r--r--src/include/dynarec_native.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/include/debug.h b/src/include/debug.h
index 14e062d5..563011e0 100644
--- a/src/include/debug.h
+++ b/src/include/debug.h
@@ -43,6 +43,8 @@ extern int box64_dynarec_missing;
 extern int box64_dynarec_aligned_atomics;
 extern int box64_dynarec_nativeflags;
 extern int box64_dynarec_df;
+extern int box64_dynarec_perf_map;
+extern int box64_dynarec_perf_map_fd;
 #ifdef ARM64
 extern int arm64_asimd;
 extern int arm64_aes;
diff --git a/src/include/dynarec_native.h b/src/include/dynarec_native.h
index dd5218f6..4a5219a7 100644
--- a/src/include/dynarec_native.h
+++ b/src/include/dynarec_native.h
@@ -26,4 +26,6 @@ void addInst(instsize_t* insts, size_t* size, int x64_size, int native_size);
 void CancelBlock64(int need_lock);
 void* FillBlock64(dynablock_t* block, uintptr_t addr, int alternate, int is32bits);
 
-#endif //__DYNAREC_ARM_H_
\ No newline at end of file
+void writePerfMap(uintptr_t func_addr, uintptr_t code_addr, size_t code_size);
+
+#endif //__DYNAREC_ARM_H_