1

我想知道当 KLEE 执行涉及变量的指令时,是否有办法判断变量是否在 KLEE 中是符号的。

4

1 回答 1

0

有一个用于此目的的 API。

/* Return true if the given value is symbolic (represented by an
* expression) in the current state. This is primarily for debugging
* and writing tests but can also be used to enable prints in replay
* mode.
*/
unsigned klee_is_symbolic(uintptr_t n);
于 2017-09-20T03:41:59.193 回答