def _dump_cache_data(self, simstate, dump_fp=None):
if self.tracer.predecessors[-1] != None:
state = self.tracer.predecessors[-1]
else:
state = None
if dump_fp:
proj = state.project
state.project = None
state.history.trim()
try:
pickle.dump((self.tracer.bb_cnt, self.tracer.cgc_flag_bytes, state, claripy.ast.base.var_counter), dump_fp, pickle.HIGHEST_PROTOCOL)
except RuntimeError as e: # maximum recursion depth can be reached here
l.error("unable to cache state, '%s' during pickling", e.message)
finally:
state.project = proj
# unhook receive
receive.cache_hook = None
# add preconstraints to tracer
self.tracer._preconstrain_state(simstate)
评论列表
文章目录