2014-01-13 01:45:24 +00:00
|
|
|
/*
|
2014-08-03 23:03:58 +00:00
|
|
|
Copyright (c) 2013-2014 Microsoft Corporation. All rights reserved.
|
2014-01-13 01:45:24 +00:00
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
2014-08-05 17:07:56 +00:00
|
|
|
#include <utility>
|
2014-08-03 23:03:58 +00:00
|
|
|
#include "kernel/abstract.h"
|
2014-01-13 01:45:24 +00:00
|
|
|
#include "kernel/instantiate.h"
|
2014-08-05 01:24:01 +00:00
|
|
|
#include "kernel/for_each_fn.h"
|
2014-08-05 15:37:03 +00:00
|
|
|
#include "kernel/type_checker.h"
|
2014-01-13 01:45:24 +00:00
|
|
|
#include "library/kernel_bindings.h"
|
2014-08-03 23:03:58 +00:00
|
|
|
#include "library/locals.h"
|
2014-08-05 00:32:07 +00:00
|
|
|
#include "library/match.h"
|
2014-01-13 01:45:24 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2014-08-05 01:24:01 +00:00
|
|
|
static name g_tmp_prefix = name::mk_internal_unique_name();
|
|
|
|
|
|
|
|
level mk_idx_meta_univ(unsigned i) {
|
|
|
|
return mk_meta_univ(name(g_tmp_prefix, i));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_idx_meta_univ(level const & l) {
|
|
|
|
if (!is_meta(l))
|
|
|
|
return false;
|
|
|
|
name const & n = meta_id(l);
|
|
|
|
return !n.is_atomic() && n.is_numeral() && n.get_prefix() == g_tmp_prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned to_meta_idx(level const & l) {
|
|
|
|
lean_assert(is_idx_meta_univ(l));
|
|
|
|
return meta_id(l).get_numeral();
|
|
|
|
}
|
|
|
|
|
|
|
|
class match_fn : public match_context {
|
2014-08-05 17:07:56 +00:00
|
|
|
buffer<optional<expr>> & m_esubst;
|
|
|
|
buffer<optional<level>> & m_lsubst;
|
|
|
|
name_generator m_ngen;
|
|
|
|
name_map<name> * m_name_subst;
|
|
|
|
match_plugin const * m_plugin;
|
2014-08-19 23:28:58 +00:00
|
|
|
buffer<pair<bool, unsigned>> m_stack;
|
2014-08-05 17:07:56 +00:00
|
|
|
buffer<unsigned> m_scopes;
|
|
|
|
|
|
|
|
void push() {
|
|
|
|
m_scopes.push_back(m_stack.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
void pop() {
|
|
|
|
lean_assert(!m_scopes.empty());
|
|
|
|
unsigned old_sz = m_scopes.back();
|
|
|
|
while (m_stack.size() > old_sz) {
|
|
|
|
auto p = m_stack.back();
|
|
|
|
if (p.first)
|
|
|
|
m_esubst[p.second] = none_expr();
|
|
|
|
else
|
|
|
|
m_lsubst[p.second] = none_level();
|
|
|
|
m_stack.pop_back();
|
|
|
|
}
|
|
|
|
m_scopes.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
void keep() {
|
|
|
|
m_scopes.back() = m_stack.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
struct scope {
|
|
|
|
match_fn & m;
|
|
|
|
scope(match_fn & _m):m(_m) { m.push(); }
|
|
|
|
~scope() { m.pop(); }
|
|
|
|
void keep() { m.keep(); }
|
|
|
|
};
|
2014-08-03 23:03:58 +00:00
|
|
|
|
2014-08-05 01:24:01 +00:00
|
|
|
void _assign(expr const & p, expr const & t) {
|
|
|
|
lean_assert(var_idx(p) < m_esubst.size());
|
2014-08-03 23:03:58 +00:00
|
|
|
unsigned vidx = var_idx(p);
|
2014-08-05 01:24:01 +00:00
|
|
|
unsigned sz = m_esubst.size();
|
2014-08-05 17:07:56 +00:00
|
|
|
unsigned i = sz - vidx - 1;
|
|
|
|
m_stack.emplace_back(true, i);
|
|
|
|
m_esubst[i] = t;
|
2014-08-05 01:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _assign(level const & p, level const & l) {
|
|
|
|
lean_assert(to_meta_idx(p) < m_lsubst.size());
|
2014-08-05 17:07:56 +00:00
|
|
|
unsigned i = to_meta_idx(p);
|
|
|
|
m_stack.emplace_back(false, i);
|
|
|
|
m_lsubst[i] = l;
|
2014-01-13 01:45:24 +00:00
|
|
|
}
|
|
|
|
|
2014-08-05 01:24:01 +00:00
|
|
|
void throw_exception() const {
|
|
|
|
throw exception("ill-formed higher-order matching problem");
|
|
|
|
}
|
|
|
|
|
|
|
|
optional<expr> _get_subst(expr const & x) const {
|
2014-08-03 23:03:58 +00:00
|
|
|
unsigned vidx = var_idx(x);
|
2014-08-05 01:24:01 +00:00
|
|
|
unsigned sz = m_esubst.size();
|
2014-01-13 01:45:24 +00:00
|
|
|
if (vidx >= sz)
|
2014-08-05 01:24:01 +00:00
|
|
|
throw_exception();
|
|
|
|
return m_esubst[sz - vidx - 1];
|
2014-01-13 01:45:24 +00:00
|
|
|
}
|
|
|
|
|
2014-08-05 01:24:01 +00:00
|
|
|
optional<level> _get_subst(level const & x) const {
|
|
|
|
unsigned i = to_meta_idx(x);
|
|
|
|
if (i > m_lsubst.size())
|
|
|
|
throw_exception();
|
|
|
|
return m_lsubst[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void assign(expr const & p, expr const & t) { return _assign(p, t); }
|
|
|
|
virtual void assign(level const & p, level const & t) { return _assign(p, t); }
|
|
|
|
virtual optional<expr> get_subst(expr const & x) const { return _get_subst(x); }
|
|
|
|
virtual optional<level> get_subst(level const & x) const { return _get_subst(x); }
|
|
|
|
virtual name mk_name() { return m_ngen.next(); }
|
|
|
|
|
2014-08-03 23:03:58 +00:00
|
|
|
bool args_are_distinct_locals(buffer<expr> const & args) {
|
|
|
|
for (auto it = args.begin(); it != args.end(); it++) {
|
|
|
|
if (!is_local(*it) || contains_local(*it, args.begin(), it))
|
2014-01-13 01:45:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-03 23:03:58 +00:00
|
|
|
optional<expr> proj(expr const & t, buffer<expr> const & args) {
|
|
|
|
expr r = Fun(args, t);
|
|
|
|
if (has_local(r))
|
2014-01-13 01:45:24 +00:00
|
|
|
return none_expr();
|
|
|
|
else
|
|
|
|
return some_expr(r);
|
|
|
|
}
|
|
|
|
|
2014-08-05 01:24:01 +00:00
|
|
|
bool try_plugin(expr const & p, expr const & t) {
|
2014-08-03 23:03:58 +00:00
|
|
|
if (!m_plugin)
|
2014-01-14 22:37:28 +00:00
|
|
|
return false;
|
2014-08-05 01:24:01 +00:00
|
|
|
return (*m_plugin)(p, t, *this);
|
2014-01-14 22:37:28 +00:00
|
|
|
}
|
|
|
|
|
2014-08-05 17:07:56 +00:00
|
|
|
bool match_binding_core(expr p, expr t) {
|
2014-08-03 23:03:58 +00:00
|
|
|
lean_assert(is_binding(p) && is_binding(t));
|
|
|
|
buffer<expr> ls;
|
|
|
|
expr_kind k = p.kind();
|
|
|
|
while (p.kind() == k && t.kind() == k) {
|
|
|
|
if (m_name_subst)
|
|
|
|
(*m_name_subst)[binding_name(p)] = binding_name(t);
|
|
|
|
expr p_d = instantiate_rev(binding_domain(p), ls.size(), ls.data());
|
|
|
|
expr t_d = instantiate_rev(binding_domain(t), ls.size(), ls.data());
|
2014-08-05 01:28:14 +00:00
|
|
|
if (!_match(p_d, t_d))
|
2014-08-03 23:03:58 +00:00
|
|
|
return false;
|
|
|
|
expr l = mk_local(m_ngen.next(), binding_name(t), t_d, binding_info(t));
|
|
|
|
ls.push_back(l);
|
|
|
|
p = binding_body(p);
|
|
|
|
t = binding_body(t);
|
2014-01-19 18:32:06 +00:00
|
|
|
}
|
2014-08-03 23:03:58 +00:00
|
|
|
if (p.kind() == k || t.kind() == k)
|
|
|
|
return false;
|
|
|
|
p = instantiate_rev(p, ls.size(), ls.data());
|
|
|
|
t = instantiate_rev(t, ls.size(), ls.data());
|
2014-08-05 01:28:14 +00:00
|
|
|
return _match(p, t);
|
2014-01-19 18:32:06 +00:00
|
|
|
}
|
|
|
|
|
2014-08-05 17:07:56 +00:00
|
|
|
bool match_binding(expr const & p, expr const & t) {
|
|
|
|
{
|
|
|
|
scope s(*this);
|
|
|
|
if (match_binding_core(p, t)) {
|
|
|
|
s.keep();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return try_plugin(p, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool match_macro_core(expr const & p, expr const & t) {
|
2014-08-03 23:03:58 +00:00
|
|
|
if (macro_def(p) == macro_def(t) && macro_num_args(p) == macro_num_args(t)) {
|
|
|
|
for (unsigned i = 0; i < macro_num_args(p); i++) {
|
2014-08-05 01:28:14 +00:00
|
|
|
if (!_match(macro_arg(p, i), macro_arg(t, i)))
|
2014-08-03 23:03:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-01-19 18:32:06 +00:00
|
|
|
return true;
|
2014-08-03 23:03:58 +00:00
|
|
|
}
|
2014-01-19 18:32:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-08-05 17:07:56 +00:00
|
|
|
bool match_macro(expr const & p, expr const & t) {
|
|
|
|
{
|
|
|
|
scope s(*this);
|
|
|
|
if (match_macro_core(p, t)) {
|
|
|
|
s.keep();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return try_plugin(p, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool match_app_core(expr const & p, expr const & t) {
|
2014-08-05 01:28:14 +00:00
|
|
|
return match_core(app_fn(p), app_fn(t)) && _match(app_arg(p), app_arg(t));
|
2014-01-20 04:35:43 +00:00
|
|
|
}
|
|
|
|
|
2014-08-05 17:07:56 +00:00
|
|
|
bool match_app(expr const & p, expr const & t) {
|
|
|
|
{
|
|
|
|
scope s(*this);
|
|
|
|
if (match_app_core(p, t)) {
|
|
|
|
s.keep();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return try_plugin(p, t);
|
|
|
|
}
|
|
|
|
|
2014-08-05 01:24:01 +00:00
|
|
|
bool match_level_core(level const & p, level const & l) {
|
|
|
|
if (p == l)
|
|
|
|
return true;
|
|
|
|
if (p.kind() == l.kind()) {
|
|
|
|
switch (p.kind()) {
|
|
|
|
case level_kind::Zero:
|
|
|
|
lean_unreachable(); // LCOV_EXCL_LINE
|
|
|
|
case level_kind::Param: case level_kind::Global: case level_kind::Meta:
|
|
|
|
return false;
|
|
|
|
case level_kind::Succ:
|
|
|
|
return match_level(succ_of(p), succ_of(l));
|
2014-08-05 17:07:56 +00:00
|
|
|
case level_kind::Max: {
|
|
|
|
scope s(*this);
|
|
|
|
if (match_level(max_lhs(p), max_lhs(l)) && match_level(max_rhs(p), max_rhs(l))) {
|
|
|
|
s.keep();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
2014-08-05 01:24:01 +00:00
|
|
|
}
|
2014-08-05 17:07:56 +00:00
|
|
|
case level_kind::IMax: {
|
|
|
|
scope s(*this);
|
|
|
|
if (match_level(imax_lhs(p), imax_lhs(l)) && match_level(imax_rhs(p), imax_rhs(l))) {
|
|
|
|
s.keep();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}}
|
2014-08-05 01:24:01 +00:00
|
|
|
}
|
2014-08-05 17:07:56 +00:00
|
|
|
level p1 = normalize(p);
|
|
|
|
level l1 = normalize(l);
|
|
|
|
if (p1 != p || l1 != l)
|
|
|
|
return match_level(p1, l1);
|
|
|
|
else
|
|
|
|
return false;
|
2014-08-05 01:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool match_level(level const & p, level const & l) {
|
|
|
|
if (is_idx_meta_univ(p)) {
|
|
|
|
auto s = _get_subst(p);
|
|
|
|
if (s) {
|
|
|
|
return match_level_core(*s, l);
|
|
|
|
} else {
|
|
|
|
_assign(p, l);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return match_level_core(p, l);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool match_levels(levels ps, levels ls) {
|
|
|
|
while (ps && ls) {
|
|
|
|
if (!match_level(head(ps), head(ls)))
|
|
|
|
return false;
|
|
|
|
ps = tail(ps);
|
|
|
|
ls = tail(ls);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-05 17:07:56 +00:00
|
|
|
bool match_constant(expr const & p, expr const & t) {
|
|
|
|
if (const_name(p) == const_name(t))
|
|
|
|
return match_levels(const_levels(p), const_levels(t));
|
|
|
|
else
|
|
|
|
return try_plugin(p, t);
|
|
|
|
}
|
|
|
|
|
2014-08-03 23:03:58 +00:00
|
|
|
bool match_core(expr const & p, expr const & t) {
|
|
|
|
if (p.kind() != t.kind())
|
2014-08-05 01:24:01 +00:00
|
|
|
return try_plugin(p, t);
|
2014-08-03 23:03:58 +00:00
|
|
|
switch (p.kind()) {
|
|
|
|
case expr_kind::Local: case expr_kind::Meta:
|
|
|
|
return mlocal_name(p) == mlocal_name(t);
|
|
|
|
case expr_kind::Var:
|
|
|
|
lean_unreachable(); // LCOV_EXCL_LINE
|
|
|
|
case expr_kind::Constant:
|
2014-08-05 17:07:56 +00:00
|
|
|
return match_constant(p, t);
|
2014-08-03 23:03:58 +00:00
|
|
|
case expr_kind::Sort:
|
2014-08-05 01:24:01 +00:00
|
|
|
return match_level(sort_level(p), sort_level(t));
|
2014-08-03 23:03:58 +00:00
|
|
|
case expr_kind::Lambda: case expr_kind::Pi:
|
2014-08-05 17:07:56 +00:00
|
|
|
return match_binding(p, t);
|
2014-08-03 23:03:58 +00:00
|
|
|
case expr_kind::Macro:
|
2014-08-05 17:07:56 +00:00
|
|
|
return match_macro(p, t);
|
2014-08-03 23:03:58 +00:00
|
|
|
case expr_kind::App:
|
2014-08-05 17:07:56 +00:00
|
|
|
return match_app(p, t);
|
2014-01-20 04:35:43 +00:00
|
|
|
}
|
2014-08-03 23:03:58 +00:00
|
|
|
lean_unreachable(); // LCOV_EXCL_LINE
|
|
|
|
}
|
2014-01-20 04:35:43 +00:00
|
|
|
|
2014-08-05 01:28:14 +00:00
|
|
|
bool _match(expr const & p, expr const & t) {
|
2014-08-03 23:03:58 +00:00
|
|
|
if (is_var(p)) {
|
2014-08-05 01:24:01 +00:00
|
|
|
auto s = _get_subst(p);
|
2014-01-13 01:45:24 +00:00
|
|
|
if (s) {
|
2014-08-03 23:03:58 +00:00
|
|
|
return match_core(*s, t);
|
|
|
|
} else if (has_local(t)) {
|
2014-01-13 01:45:24 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
2014-08-05 01:24:01 +00:00
|
|
|
_assign(p, t);
|
2014-01-13 01:45:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-08-03 23:03:58 +00:00
|
|
|
} else if (is_app(p)) {
|
|
|
|
buffer<expr> args;
|
|
|
|
expr const & f = get_app_rev_args(p, args);
|
|
|
|
if (is_var(f)) {
|
2014-01-20 04:35:43 +00:00
|
|
|
// higher-order pattern case
|
2014-08-05 01:24:01 +00:00
|
|
|
auto s = _get_subst(f);
|
2014-01-20 04:35:43 +00:00
|
|
|
if (s) {
|
2014-08-03 23:03:58 +00:00
|
|
|
expr new_p = apply_beta(*s, args.size(), args.data());
|
|
|
|
return match_core(new_p, t);
|
|
|
|
}
|
|
|
|
if (args_are_distinct_locals(args)) {
|
|
|
|
optional<expr> new_t = proj(t, args);
|
2014-01-20 04:35:43 +00:00
|
|
|
if (new_t) {
|
2014-08-05 01:24:01 +00:00
|
|
|
_assign(f, *new_t);
|
2014-01-20 04:35:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-01-13 01:45:24 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-20 04:35:43 +00:00
|
|
|
// fallback to the first-order case
|
2014-01-13 01:45:24 +00:00
|
|
|
}
|
|
|
|
|
2014-08-03 23:03:58 +00:00
|
|
|
return match_core(p, t);
|
2014-01-13 01:45:24 +00:00
|
|
|
}
|
2014-08-05 01:28:14 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
match_fn(buffer<optional<expr>> & esubst, buffer<optional<level>> & lsubst, name_generator const & ngen,
|
|
|
|
name_map<name> * name_subst, match_plugin const * plugin):
|
|
|
|
m_esubst(esubst), m_lsubst(lsubst), m_ngen(ngen), m_name_subst(name_subst), m_plugin(plugin) {}
|
|
|
|
|
|
|
|
virtual bool match(expr const & p, expr const & t) { return _match(p, t); }
|
2014-01-13 01:45:24 +00:00
|
|
|
};
|
|
|
|
|
2014-08-05 01:24:01 +00:00
|
|
|
bool match(expr const & p, expr const & t, buffer<optional<expr>> & esubst, buffer<optional<level>> & lsubst,
|
|
|
|
name const * prefix, name_map<name> * name_subst, match_plugin const * plugin) {
|
2014-08-03 23:03:58 +00:00
|
|
|
lean_assert(closed(t));
|
|
|
|
if (prefix)
|
2014-08-05 01:24:01 +00:00
|
|
|
return match_fn(esubst, lsubst, name_generator(*prefix), name_subst, plugin).match(p, t);
|
2014-08-03 23:03:58 +00:00
|
|
|
else
|
2014-08-05 01:24:01 +00:00
|
|
|
return match_fn(esubst, lsubst, name_generator(g_tmp_prefix), name_subst, plugin).match(p, t);
|
|
|
|
}
|
|
|
|
|
2014-08-05 15:37:03 +00:00
|
|
|
match_plugin mk_whnf_match_plugin(std::shared_ptr<type_checker> const & tc) {
|
|
|
|
return [=](expr const & p, expr const & t, match_context & ctx) { // NOLINT
|
|
|
|
try {
|
2014-08-20 05:31:26 +00:00
|
|
|
constraint_seq cs;
|
2014-08-05 15:37:03 +00:00
|
|
|
expr p1 = tc->whnf(p, cs);
|
|
|
|
expr t1 = tc->whnf(t, cs);
|
2014-08-20 05:31:26 +00:00
|
|
|
return !cs && (p1 != p || t1 != t) && ctx.match(p1, t1);
|
2014-08-05 15:37:03 +00:00
|
|
|
} catch (exception&) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-08-05 01:24:01 +00:00
|
|
|
static unsigned updt_idx_meta_univ_range(level const & l, unsigned r) {
|
|
|
|
for_each(l, [&](level const & l) {
|
|
|
|
if (!has_meta(l)) return false;
|
|
|
|
if (is_idx_meta_univ(l)) {
|
|
|
|
unsigned new_r = to_meta_idx(l) + 1;
|
|
|
|
if (new_r > r)
|
|
|
|
r = new_r;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned get_idx_meta_univ_range(expr const & e) {
|
|
|
|
if (!has_univ_metavar(e))
|
|
|
|
return 0;
|
|
|
|
unsigned r = 0;
|
|
|
|
for_each(e, [&](expr const & e, unsigned) {
|
|
|
|
if (!has_univ_metavar(e)) return false;
|
|
|
|
if (is_constant(e))
|
|
|
|
for (level const & l : const_levels(e))
|
|
|
|
r = updt_idx_meta_univ_range(l, r);
|
|
|
|
if (is_sort(e))
|
|
|
|
r = updt_idx_meta_univ_range(sort_level(e), r);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
return r;
|
2014-01-13 01:45:24 +00:00
|
|
|
}
|
|
|
|
|
2014-08-05 15:37:03 +00:00
|
|
|
DECL_UDATA(match_plugin)
|
|
|
|
|
|
|
|
static const struct luaL_Reg match_plugin_m[] = {
|
|
|
|
{"__gc", match_plugin_gc},
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static int mk_whnf_match_plugin(lua_State * L) {
|
|
|
|
return push_match_plugin(L, mk_whnf_match_plugin(to_type_checker_ref(L, 1)));
|
|
|
|
}
|
|
|
|
|
2014-08-05 00:32:07 +00:00
|
|
|
static int match(lua_State * L) {
|
2014-08-05 15:37:03 +00:00
|
|
|
int nargs = lua_gettop(L);
|
2014-08-03 23:03:58 +00:00
|
|
|
expr p = to_expr(L, 1);
|
|
|
|
expr t = to_expr(L, 2);
|
2014-08-05 15:37:03 +00:00
|
|
|
match_plugin * plugin = nullptr;
|
|
|
|
if (nargs >= 3)
|
|
|
|
plugin = &to_match_plugin(L, 3);
|
2014-08-03 23:03:58 +00:00
|
|
|
if (!closed(t))
|
|
|
|
throw exception("higher-order pattern matching failure, input term must not contain free variables");
|
2014-08-05 01:24:01 +00:00
|
|
|
unsigned r1 = get_free_var_range(p);
|
|
|
|
unsigned r2 = get_idx_meta_univ_range(p);
|
|
|
|
buffer<optional<expr>> esubst;
|
|
|
|
buffer<optional<level>> lsubst;
|
|
|
|
esubst.resize(r1); lsubst.resize(r2);
|
2014-08-05 15:37:03 +00:00
|
|
|
if (match(p, t, esubst, lsubst, nullptr, nullptr, plugin)) {
|
2014-01-13 01:45:24 +00:00
|
|
|
lua_newtable(L);
|
|
|
|
int i = 1;
|
2014-08-05 01:24:01 +00:00
|
|
|
for (auto s : esubst) {
|
2014-08-03 23:03:58 +00:00
|
|
|
if (s)
|
2014-01-13 01:45:24 +00:00
|
|
|
push_expr(L, *s);
|
2014-08-03 23:03:58 +00:00
|
|
|
else
|
2014-01-16 07:51:17 +00:00
|
|
|
lua_pushboolean(L, false);
|
2014-01-13 01:45:24 +00:00
|
|
|
lua_rawseti(L, -2, i);
|
|
|
|
i = i + 1;
|
|
|
|
}
|
2014-08-05 01:24:01 +00:00
|
|
|
lua_newtable(L);
|
|
|
|
i = 1;
|
|
|
|
for (auto s : lsubst) {
|
|
|
|
if (s)
|
|
|
|
push_level(L, *s);
|
|
|
|
else
|
|
|
|
lua_pushboolean(L, false);
|
|
|
|
lua_rawseti(L, -2, i);
|
|
|
|
i = i + 1;
|
|
|
|
}
|
2014-01-13 01:45:24 +00:00
|
|
|
} else {
|
|
|
|
lua_pushnil(L);
|
2014-08-05 01:24:01 +00:00
|
|
|
lua_pushnil(L);
|
2014-01-13 01:45:24 +00:00
|
|
|
}
|
2014-08-05 01:24:01 +00:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mk_idx_meta_univ(lua_State * L) {
|
|
|
|
return push_level(L, mk_idx_meta_univ(luaL_checkinteger(L, 1)));
|
2014-01-13 01:45:24 +00:00
|
|
|
}
|
|
|
|
|
2014-08-05 00:32:07 +00:00
|
|
|
void open_match(lua_State * L) {
|
2014-08-05 15:37:03 +00:00
|
|
|
luaL_newmetatable(L, match_plugin_mt);
|
|
|
|
lua_pushvalue(L, -1);
|
|
|
|
lua_setfield(L, -2, "__index");
|
|
|
|
setfuncs(L, match_plugin_m, 0);
|
|
|
|
|
|
|
|
SET_GLOBAL_FUN(mk_whnf_match_plugin, "whnf_match_plugin");
|
|
|
|
SET_GLOBAL_FUN(match_plugin_pred, "is_match_plugin");
|
|
|
|
SET_GLOBAL_FUN(mk_idx_meta_univ, "mk_idx_meta_univ");
|
|
|
|
SET_GLOBAL_FUN(match, "match");
|
2014-01-13 01:45:24 +00:00
|
|
|
}
|
|
|
|
}
|