2013-08-10 01:00:05 +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 <atomic>
|
2013-08-15 01:16:11 +00:00
|
|
|
#include "map.h"
|
2013-08-10 01:00:05 +00:00
|
|
|
#include "frontend.h"
|
|
|
|
#include "environment.h"
|
2013-08-14 23:35:04 +00:00
|
|
|
#include "operator_info.h"
|
2013-08-16 01:54:01 +00:00
|
|
|
#include "toplevel.h"
|
|
|
|
#include "builtin_notation.h"
|
|
|
|
#include "pp.h"
|
2013-08-10 01:00:05 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
/** \brief Implementation of the Lean frontend */
|
|
|
|
struct frontend::imp {
|
2013-08-14 23:35:04 +00:00
|
|
|
// Remark: only named objects are stored in the dictionary.
|
|
|
|
typedef std::unordered_map<name, operator_info, name_hash, name_eq> operator_table;
|
2013-08-15 01:16:11 +00:00
|
|
|
typedef std::unordered_map<name, unsigned, name_hash, name_eq> implicit_table;
|
2013-08-10 01:00:05 +00:00
|
|
|
std::atomic<unsigned> m_num_children;
|
|
|
|
std::shared_ptr<imp> m_parent;
|
|
|
|
environment m_env;
|
2013-08-14 23:35:04 +00:00
|
|
|
operator_table m_nud; // nud table for Pratt's parser
|
|
|
|
operator_table m_led; // led table for Pratt's parser
|
|
|
|
operator_table m_name_to_operator; // map internal names to operators (this is used for pretty printing)
|
2013-08-15 01:16:11 +00:00
|
|
|
implicit_table m_implicit_table; // track the number of implicit arguments for a symbol.
|
2013-08-10 01:00:05 +00:00
|
|
|
|
|
|
|
bool has_children() const { return m_num_children > 0; }
|
|
|
|
void inc_children() { m_num_children++; }
|
|
|
|
void dec_children() { m_num_children--; }
|
|
|
|
|
|
|
|
bool has_parent() const { return m_parent != nullptr; }
|
|
|
|
|
2013-08-15 01:16:11 +00:00
|
|
|
/** \brief Return the nud operator for the given symbol. */
|
|
|
|
operator_info find_nud(name const & n) const {
|
|
|
|
auto it = m_nud.find(n);
|
|
|
|
if (it != m_nud.end())
|
|
|
|
return it->second;
|
|
|
|
else if (has_parent())
|
|
|
|
return m_parent->find_nud(n);
|
|
|
|
else
|
|
|
|
return operator_info();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Return the led operator for the given symbol. */
|
|
|
|
operator_info find_led(name const & n) const {
|
|
|
|
auto it = m_led.find(n);
|
|
|
|
if (it != m_led.end())
|
|
|
|
return it->second;
|
|
|
|
else if (has_parent())
|
|
|
|
return m_parent->find_led(n);
|
|
|
|
else
|
|
|
|
return operator_info();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Return true if the given operator is defined in this
|
|
|
|
frontend object (parent frontends are ignored).
|
|
|
|
*/
|
|
|
|
bool defined_here(operator_info const & n, bool led) const {
|
|
|
|
if (led)
|
|
|
|
return m_led.find(n.get_op_name()) != m_led.end();
|
|
|
|
else
|
|
|
|
return m_nud.find(n.get_op_name()) != m_nud.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Return the led/nud operator for the given symbol. */
|
|
|
|
operator_info find_op(name const & n, bool led) const {
|
|
|
|
return led ? find_led(n) : find_nud(n);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Insert a new led/nud operator. */
|
|
|
|
void insert_op(operator_info const & op, bool led) {
|
|
|
|
if (led)
|
|
|
|
insert(m_led, op.get_op_name(), op);
|
|
|
|
else
|
|
|
|
insert(m_nud, op.get_op_name(), op);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Find the operator that is used as notation for the given internal symbol. */
|
|
|
|
operator_info find_op_for(name const & n) const {
|
|
|
|
auto it = m_name_to_operator.find(n);
|
|
|
|
if (it != m_name_to_operator.end())
|
|
|
|
return it->second;
|
|
|
|
else if (has_parent())
|
|
|
|
return m_parent->find_op_for(n);
|
|
|
|
else
|
|
|
|
return operator_info();
|
|
|
|
}
|
|
|
|
|
|
|
|
void diagnostic_msg(char const * msg) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void report_op_redefined(operator_info const & old_op, operator_info const & new_op) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Remove all internal operators that are associated with the given operator symbol (aka notation) */
|
|
|
|
void remove_bindings(operator_info const & op) {
|
|
|
|
for (name const & n : op.get_internal_names()) {
|
2013-08-16 01:54:01 +00:00
|
|
|
if (has_parent() && m_parent->find_op_for(n)) {
|
2013-08-15 01:16:11 +00:00
|
|
|
// parent has a binding for n... we must hide it.
|
|
|
|
insert(m_name_to_operator, n, operator_info());
|
|
|
|
} else {
|
|
|
|
m_name_to_operator.erase(n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Register the new operator in the tables for parsing and pretty printing. */
|
|
|
|
void register_new_op(operator_info new_op, name const & n, bool led) {
|
|
|
|
new_op.add_internal_name(n);
|
|
|
|
insert_op(new_op, led);
|
|
|
|
insert(m_name_to_operator, n, new_op);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Add a new operator and save information as object.
|
|
|
|
|
|
|
|
If the new operator does not conflict with existing operators,
|
|
|
|
then we just register it.
|
|
|
|
If it conflicts, there are two options:
|
|
|
|
1) It is an overload (we just add the internal name \c n as
|
|
|
|
new option.
|
|
|
|
2) It is a real conflict, and report the issue in the
|
|
|
|
diagnostic channel, and override the existing operator (aka notation).
|
|
|
|
*/
|
|
|
|
void add_op(operator_info new_op, name const & n, bool led) {
|
|
|
|
name const & opn = new_op.get_op_name();
|
|
|
|
operator_info old_op = find_op(opn, led);
|
2013-08-16 01:54:01 +00:00
|
|
|
if (!old_op) {
|
2013-08-15 01:16:11 +00:00
|
|
|
register_new_op(new_op, n, led);
|
|
|
|
} else if (old_op == new_op) {
|
|
|
|
// overload
|
|
|
|
if (defined_here(old_op, led)) {
|
|
|
|
old_op.add_internal_name(n);
|
|
|
|
} else {
|
|
|
|
// we must copy the operator because it was defined in
|
|
|
|
// a parent frontend.
|
|
|
|
new_op = old_op.copy();
|
|
|
|
register_new_op(new_op, n, led);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
report_op_redefined(old_op, new_op);
|
|
|
|
remove_bindings(old_op);
|
|
|
|
register_new_op(new_op, n, led);
|
|
|
|
}
|
2013-08-16 22:09:26 +00:00
|
|
|
m_env.add_neutral_object(new notation_declaration(new_op, n));
|
2013-08-15 01:16:11 +00:00
|
|
|
}
|
|
|
|
|
2013-08-16 01:54:01 +00:00
|
|
|
void add_infixl(name const & opn, unsigned p, name const & n) { add_op(infixl(opn, p), n, true); }
|
|
|
|
void add_infixr(name const & opn, unsigned p, name const & n) { add_op(infixr(opn, p), n, true); }
|
|
|
|
void add_prefix(name const & opn, unsigned p, name const & n) { add_op(prefix(opn, p), n, false); }
|
|
|
|
void add_postfix(name const & opn, unsigned p, name const & n) { add_op(postfix(opn, p), n, true); }
|
|
|
|
void add_mixfixl(unsigned sz, name const * opns, unsigned p, name const & n) { add_op(mixfixl(sz, opns, p), n, false); }
|
|
|
|
void add_mixfixr(unsigned sz, name const * opns, unsigned p, name const & n) { add_op(mixfixr(sz, opns, p), n, true); }
|
|
|
|
void add_mixfixc(unsigned sz, name const * opns, unsigned p, name const & n) { add_op(mixfixc(sz, opns, p), n, false); }
|
2013-08-15 15:52:10 +00:00
|
|
|
|
2013-08-16 01:54:01 +00:00
|
|
|
imp(frontend & fe):
|
2013-08-16 16:30:08 +00:00
|
|
|
m_num_children(0) {
|
2013-08-10 01:00:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
explicit imp(std::shared_ptr<imp> const & parent):
|
|
|
|
m_num_children(0),
|
|
|
|
m_parent(parent),
|
|
|
|
m_env(m_parent->m_env.mk_child()) {
|
|
|
|
m_parent->inc_children();
|
|
|
|
}
|
|
|
|
|
|
|
|
~imp() {
|
|
|
|
if (m_parent)
|
|
|
|
m_parent->dec_children();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-08-16 01:54:01 +00:00
|
|
|
frontend::frontend():m_imp(new imp(*this)) {
|
|
|
|
init_builtin_notation(*this);
|
2013-08-16 16:30:08 +00:00
|
|
|
init_toplevel(m_imp->m_env);
|
2013-08-10 01:00:05 +00:00
|
|
|
}
|
2013-08-16 01:54:01 +00:00
|
|
|
frontend::frontend(imp * new_ptr):m_imp(new_ptr) {}
|
|
|
|
frontend::frontend(std::shared_ptr<imp> const & ptr):m_imp(ptr) {}
|
|
|
|
frontend::~frontend() {}
|
2013-08-10 01:00:05 +00:00
|
|
|
|
2013-08-16 01:54:01 +00:00
|
|
|
frontend frontend::mk_child() const { return frontend(new imp(m_imp)); }
|
|
|
|
bool frontend::has_children() const { return m_imp->has_children(); }
|
|
|
|
bool frontend::has_parent() const { return m_imp->has_parent(); }
|
|
|
|
frontend frontend::parent() const { lean_assert(has_parent()); return frontend(m_imp->m_parent); }
|
2013-08-10 01:00:05 +00:00
|
|
|
|
2013-08-17 03:39:24 +00:00
|
|
|
environment const & frontend::get_environment() const { return m_imp->m_env; }
|
2013-08-10 01:00:05 +00:00
|
|
|
|
|
|
|
level frontend::add_uvar(name const & n, level const & l) { return m_imp->m_env.add_uvar(n, l); }
|
|
|
|
level frontend::add_uvar(name const & n) { return m_imp->m_env.add_uvar(n); }
|
|
|
|
level frontend::get_uvar(name const & n) const { return m_imp->m_env.get_uvar(n); }
|
2013-08-15 15:52:10 +00:00
|
|
|
|
2013-08-17 17:55:42 +00:00
|
|
|
void frontend::add_definition(name const & n, expr const & t, expr const & v, bool opaque) {
|
|
|
|
return m_imp->m_env.add_definition(n, t, v, opaque);
|
|
|
|
}
|
|
|
|
void frontend::add_theorem(name const & n, expr const & t, expr const & v) { return m_imp->m_env.add_theorem(n, t, v); }
|
|
|
|
void frontend::add_definition(name const & n, expr const & v, bool opaque) { return m_imp->m_env.add_definition(n, v, opaque); }
|
|
|
|
void frontend::add_axiom(name const & n, expr const & t) { return m_imp->m_env.add_axiom(n, t); }
|
|
|
|
void frontend::add_var(name const & n, expr const & t) { return m_imp->m_env.add_var(n, t); }
|
|
|
|
object const & frontend::get_object(name const & n) const { return m_imp->m_env.get_object(n); }
|
|
|
|
object const & frontend::find_object(name const & n) const { return m_imp->m_env.find_object(n); }
|
|
|
|
bool frontend::has_object(name const & n) const { return m_imp->m_env.has_object(n); }
|
2013-08-18 01:13:55 +00:00
|
|
|
frontend::object_iterator frontend::begin_objects() const { return m_imp->m_env.begin_objects(); }
|
|
|
|
frontend::object_iterator frontend::end_objects() const { return m_imp->m_env.end_objects(); }
|
|
|
|
frontend::object_iterator frontend::begin_local_objects() const { return m_imp->m_env.begin_local_objects(); }
|
|
|
|
frontend::object_iterator frontend::end_local_objects() const { return m_imp->m_env.end_local_objects(); }
|
2013-08-17 17:55:42 +00:00
|
|
|
|
2013-08-15 15:52:10 +00:00
|
|
|
void frontend::add_infixl(name const & opn, unsigned p, name const & n) { m_imp->add_infixl(opn, p, n); }
|
|
|
|
void frontend::add_infixr(name const & opn, unsigned p, name const & n) { m_imp->add_infixr(opn, p, n); }
|
|
|
|
void frontend::add_prefix(name const & opn, unsigned p, name const & n) { m_imp->add_prefix(opn, p, n); }
|
|
|
|
void frontend::add_postfix(name const & opn, unsigned p, name const & n) { m_imp->add_postfix(opn, p, n); }
|
2013-08-16 01:54:01 +00:00
|
|
|
void frontend::add_mixfixl(unsigned sz, name const * opns, unsigned p, name const & n) { m_imp->add_mixfixl(sz, opns, p, n); }
|
|
|
|
void frontend::add_mixfixr(unsigned sz, name const * opns, unsigned p, name const & n) { m_imp->add_mixfixr(sz, opns, p, n); }
|
|
|
|
void frontend::add_mixfixc(unsigned sz, name const * opns, unsigned p, name const & n) { m_imp->add_mixfixc(sz, opns, p, n); }
|
|
|
|
operator_info frontend::find_op_for(name const & n) const { return m_imp->find_op_for(n); }
|
2013-08-18 01:13:55 +00:00
|
|
|
operator_info frontend::find_nud(name const & n) const { return m_imp->find_nud(n); }
|
|
|
|
operator_info frontend::find_led(name const & n) const { return m_imp->find_led(n); }
|
2013-08-10 01:00:05 +00:00
|
|
|
}
|