2013-07-23 02:31:27 +00:00
|
|
|
/*
|
|
|
|
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 <unordered_set>
|
2013-07-24 21:41:03 +00:00
|
|
|
#include "buffer.h"
|
2013-07-24 19:24:49 +00:00
|
|
|
#include "max_sharing.h"
|
2013-07-23 02:31:27 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2013-07-23 15:59:39 +00:00
|
|
|
|
2013-07-24 19:24:49 +00:00
|
|
|
struct max_sharing_fn::imp {
|
2013-07-23 15:59:39 +00:00
|
|
|
struct expr_struct_eq { unsigned operator()(expr const & e1, expr const & e2) const { return e1 == e2; }};
|
|
|
|
typedef typename std::unordered_set<expr, expr_hash, expr_struct_eq> expr_cache;
|
|
|
|
|
|
|
|
expr_cache m_cache;
|
|
|
|
|
|
|
|
void cache(expr const & a) {
|
|
|
|
a.raw()->set_max_shared();
|
|
|
|
m_cache.insert(a);
|
2013-07-23 02:31:27 +00:00
|
|
|
}
|
2013-07-23 15:59:39 +00:00
|
|
|
|
|
|
|
expr apply(expr const & a) {
|
|
|
|
auto r = m_cache.find(a);
|
|
|
|
if (r != m_cache.end()) {
|
|
|
|
lean_assert((*r).raw()->max_shared());
|
|
|
|
return *r;
|
2013-07-23 02:31:27 +00:00
|
|
|
}
|
2013-07-23 16:18:18 +00:00
|
|
|
if (a.raw()->max_shared()) {
|
|
|
|
m_cache.insert(a);
|
|
|
|
return a;
|
|
|
|
}
|
2013-07-23 15:59:39 +00:00
|
|
|
switch (a.kind()) {
|
2013-08-03 23:09:21 +00:00
|
|
|
case expr_kind::Var: case expr_kind::Constant: case expr_kind::Type: case expr_kind::Value:
|
2013-07-23 15:59:39 +00:00
|
|
|
cache(a);
|
2013-07-23 02:31:27 +00:00
|
|
|
return a;
|
2013-07-23 15:59:39 +00:00
|
|
|
case expr_kind::App: {
|
2013-07-30 04:28:22 +00:00
|
|
|
expr r = update_app(a, [=](expr const & c){ return apply(c); });
|
|
|
|
cache(r);
|
|
|
|
return r;
|
2013-07-23 02:31:27 +00:00
|
|
|
}
|
2013-08-04 16:37:52 +00:00
|
|
|
case expr_kind::Eq : {
|
|
|
|
expr r = update_eq(a, [=](expr const & l, expr const & r){ return std::make_pair(apply(l), apply(r)); });
|
|
|
|
cache(r);
|
|
|
|
return r;
|
|
|
|
}
|
2013-07-23 15:59:39 +00:00
|
|
|
case expr_kind::Lambda:
|
|
|
|
case expr_kind::Pi: {
|
2013-07-30 04:28:22 +00:00
|
|
|
expr r = update_abst(a, [=](expr const & t, expr const & b) { return std::make_pair(apply(t), apply(b)); });
|
|
|
|
cache(r);
|
|
|
|
return r;
|
2013-08-04 16:37:52 +00:00
|
|
|
}
|
|
|
|
case expr_kind::Let: {
|
|
|
|
expr r = update_let(a, [=](expr const & v, expr const & b) { return std::make_pair(apply(v), apply(b)); });
|
|
|
|
cache(r);
|
|
|
|
return r;
|
2013-07-23 15:59:39 +00:00
|
|
|
}}
|
|
|
|
lean_unreachable();
|
|
|
|
return a;
|
|
|
|
}
|
2013-07-24 07:45:38 +00:00
|
|
|
expr operator()(expr const & a) { return apply(a); }
|
2013-07-23 15:59:39 +00:00
|
|
|
};
|
|
|
|
|
2013-07-24 19:24:49 +00:00
|
|
|
|
|
|
|
max_sharing_fn::max_sharing_fn():m_imp(new imp) {}
|
|
|
|
max_sharing_fn::~max_sharing_fn() {}
|
|
|
|
expr max_sharing_fn::operator()(expr const & a) { return (*m_imp)(a); }
|
|
|
|
void max_sharing_fn::clear() { m_imp->m_cache.clear(); }
|
|
|
|
|
2013-07-23 15:59:39 +00:00
|
|
|
expr max_sharing(expr const & a) {
|
2013-07-24 07:45:38 +00:00
|
|
|
if (a.raw()->max_shared())
|
2013-07-23 15:59:39 +00:00
|
|
|
return a;
|
2013-07-24 07:45:38 +00:00
|
|
|
else
|
2013-07-24 19:24:49 +00:00
|
|
|
return max_sharing_fn::imp()(a);
|
2013-07-23 02:31:27 +00:00
|
|
|
}
|
2013-07-23 15:59:39 +00:00
|
|
|
|
2013-07-23 02:31:27 +00:00
|
|
|
} // namespace lean
|