We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a4813f commit 9acfbcaCopy full SHA for 9acfbca
accel/tcg/tcg-runtime-sym.c
@@ -20,6 +20,8 @@
20
#include "exec/cpu_ldst.h"
21
#include "qemu/qemu-print.h"
22
#include "tcg.h"
23
+#include "exec/exec-all.h"
24
+
25
26
/* Include the symbolic backend, using void* as expression type. */
27
@@ -651,6 +653,8 @@ void HELPER(sym_notify_return)(uint64_t return_address)
651
653
void HELPER(sym_notify_block)(uint64_t block_id)
652
654
{
655
_sym_notify_basic_block(block_id);
656
+ TranslationBlock *block = (TranslationBlock *) block_id;
657
+ _sym_trace_execution(block->pc);
658
}
659
660
void HELPER(sym_collect_garbage)(void)
0 commit comments