2013-07-22 11:03:46 +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
|
2013-08-01 22:42:06 +00:00
|
|
|
Soonho Kong
|
2013-07-22 11:03:46 +00:00
|
|
|
*/
|
|
|
|
#include <vector>
|
2013-08-01 22:42:06 +00:00
|
|
|
#include <sstream>
|
2013-07-22 11:03:46 +00:00
|
|
|
#include "expr.h"
|
2013-07-30 08:39:29 +00:00
|
|
|
#include "free_vars.h"
|
2013-08-23 16:36:40 +00:00
|
|
|
#include "expr_eq.h"
|
2013-07-22 11:03:46 +00:00
|
|
|
#include "hash.h"
|
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
unsigned hash_args(unsigned size, expr const * args) {
|
|
|
|
return hash(size, [&args](unsigned i){ return args[i].hash(); });
|
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
static expr g_null;
|
|
|
|
|
|
|
|
expr const & expr::null() {
|
|
|
|
lean_assert(!g_null);
|
|
|
|
return g_null;
|
|
|
|
}
|
|
|
|
|
2013-07-22 11:03:46 +00:00
|
|
|
expr_cell::expr_cell(expr_kind k, unsigned h):
|
2013-07-23 15:59:39 +00:00
|
|
|
m_kind(static_cast<unsigned>(k)),
|
2013-07-24 08:16:35 +00:00
|
|
|
m_flags(0),
|
2013-07-22 11:03:46 +00:00
|
|
|
m_hash(h),
|
|
|
|
m_rc(1) {}
|
|
|
|
|
|
|
|
expr_var::expr_var(unsigned idx):
|
|
|
|
expr_cell(expr_kind::Var, idx),
|
|
|
|
m_vidx(idx) {}
|
|
|
|
|
2013-08-03 23:09:21 +00:00
|
|
|
expr_const::expr_const(name const & n):
|
2013-07-22 20:04:27 +00:00
|
|
|
expr_cell(expr_kind::Constant, n.hash()),
|
2013-08-03 23:09:21 +00:00
|
|
|
m_name(n) {}
|
2013-07-22 11:03:46 +00:00
|
|
|
|
|
|
|
expr_app::expr_app(unsigned num_args):
|
|
|
|
expr_cell(expr_kind::App, 0),
|
|
|
|
m_num_args(num_args) {
|
|
|
|
}
|
|
|
|
expr_app::~expr_app() {
|
|
|
|
for (unsigned i = 0; i < m_num_args; i++)
|
|
|
|
(m_args+i)->~expr();
|
|
|
|
}
|
2013-08-06 18:27:14 +00:00
|
|
|
expr mk_app(unsigned n, expr const * as) {
|
2013-07-23 18:47:36 +00:00
|
|
|
lean_assert(n > 1);
|
|
|
|
unsigned new_n;
|
|
|
|
unsigned n0 = 0;
|
|
|
|
expr const & arg0 = as[0];
|
2013-07-24 02:27:13 +00:00
|
|
|
// Remark: we represent ((app a b) c) as (app a b c)
|
2013-07-22 11:03:46 +00:00
|
|
|
if (is_app(arg0)) {
|
2013-07-23 18:47:36 +00:00
|
|
|
n0 = num_args(arg0);
|
|
|
|
new_n = n + n0 - 1;
|
2013-08-07 15:17:33 +00:00
|
|
|
} else {
|
2013-07-23 18:47:36 +00:00
|
|
|
new_n = n;
|
2013-07-22 11:03:46 +00:00
|
|
|
}
|
2013-07-23 18:47:36 +00:00
|
|
|
char * mem = new char[sizeof(expr_app) + new_n*sizeof(expr)];
|
|
|
|
expr r(new (mem) expr_app(new_n));
|
2013-07-22 11:03:46 +00:00
|
|
|
expr * m_args = to_app(r)->m_args;
|
|
|
|
unsigned i = 0;
|
|
|
|
unsigned j = 0;
|
2013-07-23 18:47:36 +00:00
|
|
|
if (new_n != n) {
|
|
|
|
for (; i < n0; i++)
|
|
|
|
new (m_args+i) expr(arg(arg0, i));
|
2013-07-22 11:03:46 +00:00
|
|
|
j++;
|
|
|
|
}
|
2013-07-23 18:47:36 +00:00
|
|
|
for (; i < new_n; ++i, ++j) {
|
|
|
|
lean_assert(j < n);
|
|
|
|
new (m_args+i) expr(as[j]);
|
2013-07-22 11:03:46 +00:00
|
|
|
}
|
2013-07-23 18:47:36 +00:00
|
|
|
to_app(r)->m_hash = hash_args(new_n, m_args);
|
2013-07-22 11:03:46 +00:00
|
|
|
return r;
|
|
|
|
}
|
2013-08-04 16:37:52 +00:00
|
|
|
expr_eq::expr_eq(expr const & lhs, expr const & rhs):
|
|
|
|
expr_cell(expr_kind::Eq, ::lean::hash(lhs.hash(), rhs.hash())),
|
|
|
|
m_lhs(lhs),
|
|
|
|
m_rhs(rhs) {
|
|
|
|
}
|
2013-09-04 06:15:37 +00:00
|
|
|
expr_eq::~expr_eq() {}
|
2013-07-24 04:49:19 +00:00
|
|
|
expr_abstraction::expr_abstraction(expr_kind k, name const & n, expr const & t, expr const & b):
|
|
|
|
expr_cell(k, ::lean::hash(t.hash(), b.hash())),
|
2013-07-22 11:03:46 +00:00
|
|
|
m_name(n),
|
2013-08-03 18:31:42 +00:00
|
|
|
m_domain(t),
|
2013-07-24 04:49:19 +00:00
|
|
|
m_body(b) {
|
2013-07-22 11:03:46 +00:00
|
|
|
}
|
2013-09-04 06:15:37 +00:00
|
|
|
expr_lambda::expr_lambda(name const & n, expr const & t, expr const & e):expr_abstraction(expr_kind::Lambda, n, t, e) {}
|
|
|
|
expr_pi::expr_pi(name const & n, expr const & t, expr const & e):expr_abstraction(expr_kind::Pi, n, t, e) {}
|
2013-07-30 02:44:26 +00:00
|
|
|
expr_type::expr_type(level const & l):
|
|
|
|
expr_cell(expr_kind::Type, l.hash()),
|
|
|
|
m_level(l) {
|
2013-07-22 11:03:46 +00:00
|
|
|
}
|
2013-09-04 06:15:37 +00:00
|
|
|
expr_type::~expr_type() {}
|
2013-08-04 16:37:52 +00:00
|
|
|
expr_let::expr_let(name const & n, expr const & v, expr const & b):
|
|
|
|
expr_cell(expr_kind::Let, ::lean::hash(v.hash(), b.hash())),
|
|
|
|
m_name(n),
|
|
|
|
m_value(v),
|
|
|
|
m_body(b) {
|
|
|
|
}
|
2013-09-04 06:15:37 +00:00
|
|
|
expr_let::~expr_let() {}
|
2013-09-04 15:53:00 +00:00
|
|
|
name value::get_unicode_name() const { return get_name(); }
|
2013-09-04 06:15:37 +00:00
|
|
|
bool value::normalize(unsigned num_args, expr const * args, expr & r) const { return false; }
|
|
|
|
void value::display(std::ostream & out) const { out << get_name(); }
|
|
|
|
bool value::operator==(value const & other) const { return typeid(*this) == typeid(other); }
|
|
|
|
format value::pp() const { return format(get_name()); }
|
2013-09-04 15:53:00 +00:00
|
|
|
format value::pp(bool unicode) const { return unicode ? format(get_unicode_name()) : pp(); }
|
2013-09-04 06:15:37 +00:00
|
|
|
unsigned value::hash() const { return get_name().hash(); }
|
2013-08-03 23:09:21 +00:00
|
|
|
expr_value::expr_value(value & v):
|
|
|
|
expr_cell(expr_kind::Value, v.hash()),
|
|
|
|
m_val(v) {
|
|
|
|
m_val.inc_ref();
|
|
|
|
}
|
|
|
|
expr_value::~expr_value() {
|
|
|
|
m_val.dec_ref();
|
|
|
|
}
|
2013-07-22 11:03:46 +00:00
|
|
|
|
|
|
|
void expr_cell::dealloc() {
|
2013-07-23 15:59:39 +00:00
|
|
|
switch (kind()) {
|
2013-07-22 11:03:46 +00:00
|
|
|
case expr_kind::Var: delete static_cast<expr_var*>(this); break;
|
|
|
|
case expr_kind::Constant: delete static_cast<expr_const*>(this); break;
|
|
|
|
case expr_kind::App: static_cast<expr_app*>(this)->~expr_app(); delete[] reinterpret_cast<char*>(this); break;
|
2013-08-04 16:37:52 +00:00
|
|
|
case expr_kind::Eq: delete static_cast<expr_eq*>(this); break;
|
2013-07-22 11:03:46 +00:00
|
|
|
case expr_kind::Lambda: delete static_cast<expr_lambda*>(this); break;
|
|
|
|
case expr_kind::Pi: delete static_cast<expr_pi*>(this); break;
|
2013-07-30 02:44:26 +00:00
|
|
|
case expr_kind::Type: delete static_cast<expr_type*>(this); break;
|
2013-08-03 23:09:21 +00:00
|
|
|
case expr_kind::Value: delete static_cast<expr_value*>(this); break;
|
2013-08-04 16:37:52 +00:00
|
|
|
case expr_kind::Let: delete static_cast<expr_let*>(this); break;
|
2013-07-22 11:03:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-06 18:27:14 +00:00
|
|
|
expr mk_type() {
|
|
|
|
static thread_local expr r = mk_type(level());
|
2013-08-04 02:57:06 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-07-22 23:40:17 +00:00
|
|
|
bool operator==(expr const & a, expr const & b) {
|
2013-08-23 16:36:40 +00:00
|
|
|
return expr_eq_fn<>()(a, b);
|
2013-07-22 11:03:46 +00:00
|
|
|
}
|
|
|
|
|
2013-08-02 04:28:26 +00:00
|
|
|
bool is_arrow(expr const & t) {
|
|
|
|
return is_pi(t) && !has_free_var(abst_body(t), 0);
|
|
|
|
}
|
|
|
|
|
2013-07-24 17:14:22 +00:00
|
|
|
expr copy(expr const & a) {
|
|
|
|
switch (a.kind()) {
|
2013-08-06 18:27:14 +00:00
|
|
|
case expr_kind::Var: return mk_var(var_idx(a));
|
|
|
|
case expr_kind::Constant: return mk_constant(const_name(a));
|
|
|
|
case expr_kind::Type: return mk_type(ty_level(a));
|
|
|
|
case expr_kind::Value: return mk_value(static_cast<expr_value*>(a.raw())->m_val);
|
|
|
|
case expr_kind::App: return mk_app(num_args(a), begin_args(a));
|
|
|
|
case expr_kind::Eq: return mk_eq(eq_lhs(a), eq_rhs(a));
|
|
|
|
case expr_kind::Lambda: return mk_lambda(abst_name(a), abst_domain(a), abst_body(a));
|
|
|
|
case expr_kind::Pi: return mk_pi(abst_name(a), abst_domain(a), abst_body(a));
|
|
|
|
case expr_kind::Let: return mk_let(let_name(a), let_value(a), let_body(a));
|
2013-07-24 17:14:22 +00:00
|
|
|
}
|
|
|
|
lean_unreachable();
|
|
|
|
return expr();
|
|
|
|
}
|
2013-07-22 11:03:46 +00:00
|
|
|
}
|