a43020b31b
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
98 lines
2.9 KiB
C++
98 lines
2.9 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
|
|
*/
|
|
#include <tuple>
|
|
#include <unordered_set>
|
|
#include <functional>
|
|
#include "util/buffer.h"
|
|
#include "kernel/max_sharing.h"
|
|
|
|
namespace lean {
|
|
/**
|
|
\brief Implementation of the functional object for creating expressions with maximally
|
|
shared sub-expressions.
|
|
*/
|
|
struct max_sharing_fn::imp {
|
|
typedef typename std::unordered_set<expr, expr_hash, std::equal_to<expr>> expr_cache;
|
|
|
|
expr_cache m_cache;
|
|
|
|
void cache(expr const & a) {
|
|
a.raw()->set_max_shared();
|
|
m_cache.insert(a);
|
|
}
|
|
|
|
optional<expr> apply(optional<expr> const & a) {
|
|
if (a)
|
|
return some_expr(apply(*a));
|
|
else
|
|
return a;
|
|
}
|
|
|
|
expr apply(expr const & a) {
|
|
auto r = m_cache.find(a);
|
|
if (r != m_cache.end()) {
|
|
lean_assert((*r).raw()->max_shared());
|
|
return *r;
|
|
}
|
|
if (a.raw()->max_shared()) {
|
|
m_cache.insert(a);
|
|
return a;
|
|
}
|
|
switch (a.kind()) {
|
|
case expr_kind::Constant: {
|
|
expr r = update_const(a, apply(const_type(a)));
|
|
cache(r);
|
|
return r;
|
|
}
|
|
case expr_kind::Var: case expr_kind::Type: case expr_kind::Value:
|
|
cache(a);
|
|
return a;
|
|
case expr_kind::App: {
|
|
expr r = update_app(a, [=](expr const & c) { return apply(c); });
|
|
cache(r);
|
|
return r;
|
|
}
|
|
case expr_kind::Lambda:
|
|
case expr_kind::Pi: {
|
|
expr r = update_abst(a, [=](expr const & t, expr const & b) { return std::make_pair(apply(t), apply(b)); });
|
|
cache(r);
|
|
return r;
|
|
}
|
|
case expr_kind::Let: {
|
|
expr r = update_let(a, [=](optional<expr> const & t, expr const & v, expr const & b) {
|
|
return std::make_tuple(apply(t), apply(v), apply(b));
|
|
});
|
|
cache(r);
|
|
return r;
|
|
}
|
|
case expr_kind::MetaVar: {
|
|
expr r = update_metavar(a, [=](local_entry const & e) -> local_entry {
|
|
if (e.is_inst())
|
|
return mk_inst(e.s(), apply(e.v()));
|
|
else
|
|
return e;
|
|
});
|
|
cache(r);
|
|
return r;
|
|
}}
|
|
lean_unreachable(); // LCOV_EXCL_LINE
|
|
}
|
|
expr operator()(expr const & a) { return apply(a); }
|
|
};
|
|
|
|
max_sharing_fn::max_sharing_fn():m_ptr(new imp) {}
|
|
max_sharing_fn::~max_sharing_fn() {}
|
|
expr max_sharing_fn::operator()(expr const & a) { return (*m_ptr)(a); }
|
|
void max_sharing_fn::clear() { m_ptr->m_cache.clear(); }
|
|
|
|
expr max_sharing(expr const & a) {
|
|
if (a.raw()->max_shared())
|
|
return a;
|
|
else
|
|
return max_sharing_fn::imp()(a);
|
|
}
|
|
} // namespace lean
|