69b9f2dd37
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
105 lines
3.6 KiB
C++
105 lines
3.6 KiB
C++
/*
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Author: Leonardo de Moura
|
|
*/
|
|
#pragma once
|
|
#include <memory>
|
|
#include <utility>
|
|
#include "util/buffer.h"
|
|
#include "kernel/expr.h"
|
|
#include "kernel/expr_sets.h"
|
|
|
|
namespace lean {
|
|
/**
|
|
\brief Template for implementing expression visitors.
|
|
The argument \c F must be a function object containing the method
|
|
<code>
|
|
void operator()(expr const & e, unsigned offset)
|
|
</code>
|
|
The \c offset is the number of binders under which \c e occurs.
|
|
*/
|
|
template<typename F, bool CacheAtomic = false>
|
|
class for_each_fn {
|
|
std::unique_ptr<expr_cell_offset_set> m_visited;
|
|
F m_f;
|
|
static_assert(std::is_same<typename std::result_of<F(expr const &, unsigned)>::type, bool>::value,
|
|
"for_each_fn: return type of m_f is not bool");
|
|
|
|
void apply(expr const & e, unsigned offset) {
|
|
buffer<std::pair<expr const &, unsigned>> todo;
|
|
todo.emplace_back(e, offset);
|
|
while (true) {
|
|
begin_loop:
|
|
if (todo.empty())
|
|
break;
|
|
auto p = todo.back();
|
|
todo.pop_back();
|
|
expr const & e = p.first;
|
|
unsigned offset = p.second;
|
|
if (!CacheAtomic) {
|
|
switch (e.kind()) {
|
|
case expr_kind::Constant: case expr_kind::Var:
|
|
case expr_kind::Sort: case expr_kind::Macro:
|
|
m_f(e, offset);
|
|
goto begin_loop;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (is_shared(e)) {
|
|
expr_cell_offset p(e.raw(), offset);
|
|
if (!m_visited)
|
|
m_visited.reset(new expr_cell_offset_set());
|
|
if (m_visited->find(p) != m_visited->end())
|
|
goto begin_loop;
|
|
m_visited->insert(p);
|
|
}
|
|
|
|
if (!m_f(e, offset))
|
|
goto begin_loop;
|
|
|
|
switch (e.kind()) {
|
|
case expr_kind::Constant: case expr_kind::Var:
|
|
case expr_kind::Sort: case expr_kind::Macro:
|
|
goto begin_loop;
|
|
case expr_kind::Meta: case expr_kind::Local:
|
|
todo.emplace_back(mlocal_type(e), offset);
|
|
goto begin_loop;
|
|
case expr_kind::App:
|
|
todo.emplace_back(app_arg(e), offset);
|
|
todo.emplace_back(app_fn(e), offset);
|
|
goto begin_loop;
|
|
case expr_kind::Pair:
|
|
todo.emplace_back(pair_type(e), offset);
|
|
todo.emplace_back(pair_second(e), offset);
|
|
todo.emplace_back(pair_first(e), offset);
|
|
goto begin_loop;
|
|
case expr_kind::Fst: case expr_kind::Snd:
|
|
todo.emplace_back(proj_arg(e), offset);
|
|
goto begin_loop;
|
|
case expr_kind::Lambda: case expr_kind::Pi: case expr_kind::Sigma:
|
|
todo.emplace_back(binder_body(e), offset + 1);
|
|
todo.emplace_back(binder_domain(e), offset);
|
|
goto begin_loop;
|
|
case expr_kind::Let:
|
|
todo.emplace_back(let_body(e), offset + 1);
|
|
todo.emplace_back(let_value(e), offset);
|
|
if (let_type(e))
|
|
todo.emplace_back(*let_type(e), offset);
|
|
goto begin_loop;
|
|
}
|
|
}
|
|
}
|
|
public:
|
|
for_each_fn(F const & f):m_f(f) {}
|
|
void operator()(expr const & e) { apply(e, 0); }
|
|
};
|
|
|
|
template<typename F>
|
|
void for_each(expr const & e, F f) {
|
|
return for_each_fn<F>(f)(e);
|
|
}
|
|
}
|