mirror of
https://github.com/Z3Prover/z3
synced 2025-09-01 07:40:41 +00:00
Centralize and document TRACE tags using X-macros (#7657)
* Introduce X-macro-based trace tag definition - Created trace_tags.def to centralize TRACE tag definitions - Each tag includes a symbolic name and description - Set up enum class TraceTag for type-safe usage in TRACE macros * Add script to generate Markdown documentation from trace_tags.def - Python script parses trace_tags.def and outputs trace_tags.md * Refactor TRACE_NEW to prepend TraceTag and pass enum to is_trace_enabled * trace: improve trace tag handling system with hierarchical tagging - Introduce hierarchical tag-class structure: enabling a tag class activates all child tags - Unify TRACE, STRACE, SCTRACE, and CTRACE under enum TraceTag - Implement initial version of trace_tag.def using X(tag, tag_class, description) (class names and descriptions to be refined in a future update) * trace: replace all string-based TRACE tags with enum TraceTag - Migrated all TRACE, STRACE, SCTRACE, and CTRACE macros to use enum TraceTag values instead of raw string literals * trace : add cstring header * trace : Add Markdown documentation generation from trace_tags.def via mk_api_doc.py * trace : rename macro parameter 'class' to 'tag_class' and remove Unicode comment in trace_tags.h. * trace : Add TODO comment for future implementation of tag_class activation * trace : Disable code related to tag_class until implementation is ready (#7663).
This commit is contained in:
parent
d766292dab
commit
0a93ff515d
583 changed files with 8698 additions and 7299 deletions
|
@ -150,7 +150,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
}
|
||||
|
||||
void mk_clause(unsigned n, sat::literal * lits, euf::th_proof_hint* ph) {
|
||||
TRACE("goal2sat", tout << "mk_clause: "; for (unsigned i = 0; i < n; i++) tout << lits[i] << " "; tout << "\n";);
|
||||
TRACE(goal2sat, tout << "mk_clause: "; for (unsigned i = 0; i < n; i++) tout << lits[i] << " "; tout << "\n";);
|
||||
if (relevancy_enabled())
|
||||
ensure_euf()->add_aux(n, lits);
|
||||
m_solver.add_clause(n, lits, mk_status(ph));
|
||||
|
@ -172,7 +172,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
}
|
||||
|
||||
void mk_root_clause(unsigned n, sat::literal * lits, euf::th_proof_hint* ph = nullptr) {
|
||||
TRACE("goal2sat", tout << "mk_root_clause: "; for (unsigned i = 0; i < n; i++) tout << lits[i] << " "; tout << "\n";);
|
||||
TRACE(goal2sat, tout << "mk_root_clause: "; for (unsigned i = 0; i < n; i++) tout << lits[i] << " "; tout << "\n";);
|
||||
if (relevancy_enabled())
|
||||
ensure_euf()->add_root(n, lits);
|
||||
m_solver.add_clause(n, lits, ph ? mk_status(ph) : sat::status::input());
|
||||
|
@ -324,7 +324,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
bool ext = m_default_external || !is_uninterp_const(t) || m_interface_vars.contains(t);
|
||||
if (ext)
|
||||
m_solver.set_external(v);
|
||||
TRACE("sat", tout << "new_var: " << v << ": " << mk_bounded_pp(t, m, 2) << " " << is_uninterp_const(t) << "\n";);
|
||||
TRACE(sat, tout << "new_var: " << v << ": " << mk_bounded_pp(t, m, 2) << " " << is_uninterp_const(t) << "\n";);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
@ -396,7 +396,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
convert_euf(t, root, sign);
|
||||
return true;
|
||||
}
|
||||
TRACE("goal2sat_not_handled", tout << mk_ismt2_pp(t, m) << "\n";);
|
||||
TRACE(goal2sat_not_handled, tout << mk_ismt2_pp(t, m) << "\n";);
|
||||
std::ostringstream strm;
|
||||
strm << mk_ismt2_pp(t, m);
|
||||
throw_op_not_handled(strm.str());
|
||||
|
@ -408,7 +408,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
}
|
||||
|
||||
void convert_or(app * t, bool root, bool sign) {
|
||||
TRACE("goal2sat", tout << "convert_or:\n" << mk_bounded_pp(t, m, 2) << " root " << root << " stack " << m_result_stack.size() << "\n";);
|
||||
TRACE(goal2sat, tout << "convert_or:\n" << mk_bounded_pp(t, m, 2) << " root " << root << " stack " << m_result_stack.size() << "\n";);
|
||||
unsigned num = t->get_num_args();
|
||||
SASSERT(num <= m_result_stack.size());
|
||||
unsigned old_sz = m_result_stack.size() - num;
|
||||
|
@ -459,7 +459,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
}
|
||||
|
||||
void convert_and(app * t, bool root, bool sign) {
|
||||
TRACE("goal2sat", tout << "convert_and:\n" << mk_bounded_pp(t, m, 2) << " root: " << root << " result stack: " << m_result_stack.size() << "\n";);
|
||||
TRACE(goal2sat, tout << "convert_and:\n" << mk_bounded_pp(t, m, 2) << " root: " << root << " result stack: " << m_result_stack.size() << "\n";);
|
||||
|
||||
unsigned num = t->get_num_args();
|
||||
unsigned old_sz = m_result_stack.size() - num;
|
||||
|
@ -685,7 +685,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
|
||||
void convert_euf(expr* e, bool root, bool sign) {
|
||||
SASSERT(m_euf);
|
||||
TRACE("goal2sat", tout << "convert-euf " << mk_bounded_pp(e, m, 2) << " root " << root << "\n";);
|
||||
TRACE(goal2sat, tout << "convert-euf " << mk_bounded_pp(e, m, 2) << " root " << root << "\n";);
|
||||
euf::solver* euf = ensure_euf();
|
||||
sat::literal lit;
|
||||
{
|
||||
|
@ -783,7 +783,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
};
|
||||
|
||||
void process(expr* n, bool is_root) {
|
||||
TRACE("goal2sat", tout << "process-begin " << mk_bounded_pp(n, m, 2)
|
||||
TRACE(goal2sat, tout << "process-begin " << mk_bounded_pp(n, m, 2)
|
||||
<< " root: " << is_root
|
||||
<< " result-stack: " << m_result_stack.size()
|
||||
<< " frame-stack: " << m_frame_stack.size() << "\n";);
|
||||
|
@ -803,7 +803,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
app * t = _fr.m_t;
|
||||
bool root = _fr.m_root;
|
||||
bool sign = _fr.m_sign;
|
||||
TRACE("goal2sat_bug", tout << "result stack\n";
|
||||
TRACE(goal2sat_bug, tout << "result stack\n";
|
||||
tout << "ref-count: " << t->get_ref_count() << "\n";
|
||||
tout << mk_bounded_pp(t, m, 3) << " root: " << root << " sign: " << sign << "\n";
|
||||
tout << m_result_stack << "\n";);
|
||||
|
@ -822,16 +822,16 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
m_frame_stack[fsz - 1].m_idx++;
|
||||
if (!visit(arg, false, false))
|
||||
goto loop;
|
||||
TRACE("goal2sat_bug", tout << "visit " << mk_bounded_pp(arg, m, 2) << " result stack: " << m_result_stack.size() << "\n";);
|
||||
TRACE(goal2sat_bug, tout << "visit " << mk_bounded_pp(arg, m, 2) << " result stack: " << m_result_stack.size() << "\n";);
|
||||
}
|
||||
TRACE("goal2sat_bug", tout << "converting\n";
|
||||
TRACE(goal2sat_bug, tout << "converting\n";
|
||||
tout << mk_bounded_pp(t, m, 2) << " root: " << root << " sign: " << sign << "\n";
|
||||
tout << m_result_stack << "\n";);
|
||||
SASSERT(m_frame_stack.size() > sz);
|
||||
convert(t, root, sign);
|
||||
m_frame_stack.pop_back();
|
||||
}
|
||||
TRACE("goal2sat", tout
|
||||
TRACE(goal2sat, tout
|
||||
<< "done process: " << mk_bounded_pp(n, m, 3)
|
||||
<< " frame-stack: " << m_frame_stack.size()
|
||||
<< " result-stack: " << m_result_stack.size() << "\n";);
|
||||
|
@ -843,11 +843,11 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
unsigned sz = m_result_stack.size();
|
||||
(void)sz;
|
||||
SASSERT(n->get_ref_count() > 0);
|
||||
TRACE("goal2sat", tout << "internalize " << mk_bounded_pp(n, m, 2) << "\n";);
|
||||
TRACE(goal2sat, tout << "internalize " << mk_bounded_pp(n, m, 2) << "\n";);
|
||||
process(n, false);
|
||||
SASSERT(m_result_stack.size() == sz + 1);
|
||||
sat::literal result = m_result_stack.back();
|
||||
TRACE("goal2sat", tout << "done internalize " << result << " " << mk_bounded_pp(n, m, 2) << "\n";);
|
||||
TRACE(goal2sat, tout << "done internalize " << result << " " << mk_bounded_pp(n, m, 2) << "\n";);
|
||||
m_result_stack.pop_back();
|
||||
if (!result.sign() && m_map.to_bool_var(n) == sat::null_bool_var) {
|
||||
force_push();
|
||||
|
@ -889,9 +889,9 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
void process(expr * n) {
|
||||
flet<bool> _top(m_top_level, true);
|
||||
VERIFY(m_result_stack.empty());
|
||||
TRACE("goal2sat", tout << "assert: " << mk_bounded_pp(n, m, 3) << "\n";);
|
||||
TRACE(goal2sat, tout << "assert: " << mk_bounded_pp(n, m, 3) << "\n";);
|
||||
process(n, true);
|
||||
CTRACE("goal2sat", !m_result_stack.empty(), tout << m_result_stack << "\n";);
|
||||
CTRACE(goal2sat, !m_result_stack.empty(), tout << m_result_stack << "\n";);
|
||||
SASSERT(m_result_stack.empty());
|
||||
}
|
||||
|
||||
|
@ -980,7 +980,7 @@ struct goal2sat::imp : public sat::sat_internalizer {
|
|||
}
|
||||
f = m.mk_or(fmls);
|
||||
}
|
||||
TRACE("goal2sat", tout << mk_bounded_pp(f, m, 2) << "\n";);
|
||||
TRACE(goal2sat, tout << mk_bounded_pp(f, m, 2) << "\n";);
|
||||
process(f);
|
||||
skip_dep:
|
||||
;
|
||||
|
|
|
@ -140,9 +140,9 @@ void sat2goal::mc::operator()(sat::model& md) {
|
|||
|
||||
void sat2goal::mc::operator()(model_ref & md) {
|
||||
// apply externalized model converter
|
||||
CTRACE("sat_mc", m_gmc, m_gmc->display(tout << "before sat_mc\n"); model_v2_pp(tout, *md););
|
||||
CTRACE(sat_mc, m_gmc, m_gmc->display(tout << "before sat_mc\n"); model_v2_pp(tout, *md););
|
||||
if (m_gmc) (*m_gmc)(md);
|
||||
CTRACE("sat_mc", m_gmc, m_gmc->display(tout << "after sat_mc\n"); model_v2_pp(tout, *md););
|
||||
CTRACE(sat_mc, m_gmc, m_gmc->display(tout << "after sat_mc\n"); model_v2_pp(tout, *md););
|
||||
}
|
||||
|
||||
|
||||
|
@ -161,7 +161,7 @@ void sat2goal::mc::insert(sat::bool_var v, expr * atom, bool aux) {
|
|||
if (is_uninterp_const(atom))
|
||||
m_gmc->hide(to_app(atom)->get_decl());
|
||||
}
|
||||
TRACE("sat_mc", tout << "insert " << v << "\n";);
|
||||
TRACE(sat_mc, tout << "insert " << v << "\n";);
|
||||
}
|
||||
|
||||
expr_ref sat2goal::mc::lit2expr(sat::literal l) {
|
||||
|
|
|
@ -60,13 +60,13 @@ class sat_tactic : public tactic {
|
|||
fail_if_proof_generation("sat", g);
|
||||
bool produce_models = g->models_enabled();
|
||||
bool produce_core = g->unsat_core_enabled();
|
||||
TRACE("before_sat_solver", g->display(tout););
|
||||
TRACE(before_sat_solver, g->display(tout););
|
||||
g->elim_redundancies();
|
||||
atom2bool_var map(m);
|
||||
obj_map<expr, sat::literal> dep2asm;
|
||||
sat::literal_vector assumptions;
|
||||
m_goal2sat(*g, m_params, *m_solver, map, dep2asm);
|
||||
TRACE("sat", tout << "interpreted_atoms: " << m_goal2sat.has_interpreted_funs() << "\n";
|
||||
TRACE(sat, tout << "interpreted_atoms: " << m_goal2sat.has_interpreted_funs() << "\n";
|
||||
func_decl_ref_vector funs(m);
|
||||
m_goal2sat.get_interpreted_funs(funs);
|
||||
for (func_decl* f : funs)
|
||||
|
@ -85,10 +85,10 @@ class sat_tactic : public tactic {
|
|||
|
||||
CASSERT("sat_solver", m_solver->check_invariant());
|
||||
IF_VERBOSE(TACTIC_VERBOSITY_LVL, m_solver->display_status(verbose_stream()););
|
||||
TRACE("sat_dimacs", m_solver->display_dimacs(tout););
|
||||
TRACE(sat_dimacs, m_solver->display_dimacs(tout););
|
||||
dep2assumptions(dep2asm, assumptions);
|
||||
lbool r = m_solver->check(assumptions.size(), assumptions.data());
|
||||
TRACE("sat", tout << "result of checking: " << r << " ";
|
||||
TRACE(sat, tout << "result of checking: " << r << " ";
|
||||
if (r == l_undef) tout << m_solver->get_reason_unknown(); tout << "\n";
|
||||
if (m_goal2sat.has_interpreted_funs()) tout << "has interpreted\n";);
|
||||
if (r == l_undef)
|
||||
|
@ -112,7 +112,7 @@ class sat_tactic : public tactic {
|
|||
if (produce_models) {
|
||||
model_ref md = alloc(model, m);
|
||||
sat::model const & ll_m = m_solver->get_model();
|
||||
TRACE("sat_tactic", for (unsigned i = 0; i < ll_m.size(); i++) tout << i << ":" << ll_m[i] << " "; tout << "\n";);
|
||||
TRACE(sat_tactic, for (unsigned i = 0; i < ll_m.size(); i++) tout << i << ":" << ll_m[i] << " "; tout << "\n";);
|
||||
for (auto const& kv : map) {
|
||||
expr * n = kv.m_key;
|
||||
sat::bool_var v = kv.m_value;
|
||||
|
@ -121,7 +121,7 @@ class sat_tactic : public tactic {
|
|||
app* a = to_app(n);
|
||||
if (!is_uninterp_const(a))
|
||||
continue;
|
||||
TRACE("sat_tactic", tout << "extracting value of " << mk_ismt2_pp(n, m) << "\nvar: " << v << "\n";);
|
||||
TRACE(sat_tactic, tout << "extracting value of " << mk_ismt2_pp(n, m) << "\nvar: " << v << "\n";);
|
||||
switch (sat::value_at(v, ll_m)) {
|
||||
case l_true:
|
||||
md->register_decl(a->get_decl(), m.mk_true());
|
||||
|
@ -141,7 +141,7 @@ class sat_tactic : public tactic {
|
|||
IF_VERBOSE(0, verbose_stream() << "failed to validate: " << mk_pp(f, m) << "\n";);
|
||||
|
||||
m_goal2sat.update_model(md);
|
||||
TRACE("sat_tactic", model_v2_pp(tout, *md););
|
||||
TRACE(sat_tactic, model_v2_pp(tout, *md););
|
||||
g->add(model2model_converter(md.get()));
|
||||
}
|
||||
}
|
||||
|
@ -248,10 +248,10 @@ public:
|
|||
catch (z3_exception& ex) {
|
||||
(void)ex;
|
||||
proc.m_solver->collect_statistics(m_stats);
|
||||
TRACE("sat", tout << ex.what() << "\n";);
|
||||
TRACE(sat, tout << ex.what() << "\n";);
|
||||
throw;
|
||||
}
|
||||
TRACE("sat_stats", m_stats.display_smt2(tout););
|
||||
TRACE(sat_stats, m_stats.display_smt2(tout););
|
||||
}
|
||||
|
||||
void cleanup() override {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue