chore: update stage0
This commit is contained in:
parent
8ea6465e6d
commit
85a0232e87
14 changed files with 4661 additions and 3263 deletions
5
stage0/src/kernel/replace_fn.cpp
generated
5
stage0/src/kernel/replace_fn.cpp
generated
|
|
@ -9,6 +9,7 @@ Author: Leonardo de Moura
|
|||
#include <utility>
|
||||
#include <unordered_map>
|
||||
#include "kernel/replace_fn.h"
|
||||
#include "util/alloc.h"
|
||||
|
||||
namespace lean {
|
||||
|
||||
|
|
@ -18,7 +19,7 @@ class replace_rec_fn {
|
|||
return hash((size_t)p.first >> 3, p.second);
|
||||
}
|
||||
};
|
||||
std::unordered_map<std::pair<lean_object *, unsigned>, expr, key_hasher> m_cache;
|
||||
lean::unordered_map<std::pair<lean_object *, unsigned>, expr, key_hasher> m_cache;
|
||||
std::function<optional<expr>(expr const &, unsigned)> m_f;
|
||||
bool m_use_cache;
|
||||
|
||||
|
|
@ -84,7 +85,7 @@ expr replace(expr const & e, std::function<optional<expr>(expr const &, unsigned
|
|||
}
|
||||
|
||||
class replace_fn {
|
||||
std::unordered_map<lean_object *, expr> m_cache;
|
||||
lean::unordered_map<lean_object *, expr> m_cache;
|
||||
lean_object * m_f;
|
||||
|
||||
expr save_result(expr const & e, expr const & r, bool shared) {
|
||||
|
|
|
|||
7
stage0/src/runtime/sharecommon.h
generated
7
stage0/src/runtime/sharecommon.h
generated
|
|
@ -6,9 +6,8 @@ Author: Leonardo de Moura
|
|||
*/
|
||||
#pragma once
|
||||
#include <vector>
|
||||
#include <unordered_map>
|
||||
#include <unordered_set>
|
||||
#include "runtime/object_ref.h"
|
||||
#include "util/alloc.h"
|
||||
|
||||
namespace lean {
|
||||
extern "C" LEAN_EXPORT uint8 lean_sharecommon_eq(b_obj_arg o1, b_obj_arg o2);
|
||||
|
|
@ -32,9 +31,9 @@ protected:
|
|||
We use `m_cache` to ensure we do **not** traverse a DAG as a tree.
|
||||
We use pointer equality for this collection.
|
||||
*/
|
||||
std::unordered_map<lean_object *, lean_object *> m_cache;
|
||||
lean::unordered_map<lean_object *, lean_object *> m_cache;
|
||||
/* Set of maximally shared terms. AKA hash-consing table. */
|
||||
std::unordered_set<lean_object *, set_hash, set_eq> m_set;
|
||||
lean::unordered_set<lean_object *, set_hash, set_eq> m_set;
|
||||
/*
|
||||
If `true`, `check_cache` will also check `m_set`.
|
||||
This is useful when the input term may contain terms that have already
|
||||
|
|
|
|||
44
stage0/src/util/alloc.h
generated
Normal file
44
stage0/src/util/alloc.h
generated
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
Copyright (c) 2025 Lean FRO. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
|
||||
Authors: Sebastian Ullrich
|
||||
*/
|
||||
#pragma once
|
||||
#include <lean/config.h>
|
||||
#include <unordered_map>
|
||||
#include <unordered_set>
|
||||
|
||||
#ifdef LEAN_MIMALLOC
|
||||
#include <lean/mimalloc.h>
|
||||
#endif
|
||||
|
||||
namespace lean {
|
||||
|
||||
// We do not override `new` to avoid FFI issues for users but use `lean::allocator`
|
||||
// explicitly where using the custom allocator is important.
|
||||
|
||||
#ifdef LEAN_MIMALLOC
|
||||
template<class T> using allocator = mi_stl_allocator<T>;
|
||||
#else
|
||||
template<class T> using allocator = std::allocator<T>;
|
||||
#endif
|
||||
|
||||
// `unordered_map/set` allocates per insert, so specializing to the custom allocator can
|
||||
// save significant time for maps with frequent inserts.
|
||||
|
||||
template<
|
||||
class Key,
|
||||
class T,
|
||||
class Hash = std::hash<Key>,
|
||||
class KeyEqual = std::equal_to<Key>,
|
||||
class Allocator = lean::allocator<std::pair<const Key, T>>
|
||||
> using unordered_map = std::unordered_map<Key, T, Hash, KeyEqual, Allocator>;
|
||||
|
||||
template<
|
||||
class Key,
|
||||
class Hash = std::hash<Key>,
|
||||
class KeyEqual = std::equal_to<Key>,
|
||||
class Allocator = lean::allocator<Key>
|
||||
> using unordered_set = std::unordered_set<Key, Hash, KeyEqual, Allocator>;
|
||||
};
|
||||
2
stage0/stdlib/Lean/Meta/Tactic/Grind/Beta.c
generated
2
stage0/stdlib/Lean/Meta/Tactic/Grind/Beta.c
generated
|
|
@ -764,7 +764,7 @@ _start:
|
|||
lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6;
|
||||
x_1 = l_Lean_Meta_Grind_getEqcLambdas___lambda__1___closed__1;
|
||||
x_2 = l_Lean_Meta_Grind_getEqcLambdas___lambda__1___closed__2;
|
||||
x_3 = lean_unsigned_to_nat(1085u);
|
||||
x_3 = lean_unsigned_to_nat(1087u);
|
||||
x_4 = lean_unsigned_to_nat(2u);
|
||||
x_5 = l_Lean_Meta_Grind_getEqcLambdas___lambda__1___closed__3;
|
||||
x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5);
|
||||
|
|
|
|||
418
stage0/stdlib/Lean/Meta/Tactic/Grind/ForallProp.c
generated
418
stage0/stdlib/Lean/Meta/Tactic/Grind/ForallProp.c
generated
|
|
@ -22,17 +22,20 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_M
|
|||
static lean_object* l_Lean_Meta_Grind_propagateForallPropDown___closed__2;
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__2(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_mkEMatchTheoremWithKind_x3f(lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__4;
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_isEqTrueHyp_x3f___lambda__1___boxed(lean_object*);
|
||||
lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_addLocalEMatchTheorems___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Exception_isInterrupt(lean_object*);
|
||||
lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateForallPropDown(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Expr_isApp(lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_reportIssue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__5;
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_isEqTrueHyp_x3f___closed__1;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___closed__3;
|
||||
lean_object* l_Lean_Expr_bvar___override(lean_object*);
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_addLocalEMatchTheorems___lambda__1___closed__1;
|
||||
lean_object* l_Lean_Meta_Grind_pushEqCore(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_addLocalEMatchTheorems___closed__2;
|
||||
|
|
@ -45,11 +48,14 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__1___b
|
|||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_mkEMatchTheoremWithKind_x27_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__6;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__1;
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__1___closed__2;
|
||||
lean_object* l_Lean_Meta_Grind_activateTheorem(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropDown___closed__3;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___closed__1;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__2;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__2___closed__6;
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_mkEMatchTheoremWithKind_x27_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_addLocalEMatchTheorems___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -68,11 +74,13 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateForallPropDown___lambda__2__
|
|||
lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Expr_appArg(lean_object*, lean_object*);
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_isEqTrueHyp_x3f___closed__3;
|
||||
lean_object* l_Lean_Expr_forallE___override(lean_object*, lean_object*, lean_object*, uint8_t);
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_st_ref_get(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Expr_appFnCleanup(lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Expr_hasLooseBVars(lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__11;
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__9;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropDown___closed__7;
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateForallPropDown___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -82,9 +90,11 @@ static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__3___closed
|
|||
lean_object* l_Lean_Name_str___override(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_getGeneration(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_alreadyInternalized(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___regBuiltin_Lean_Meta_Grind_propagateExistsDown_declare__1____x40_Lean_Meta_Tactic_Grind_ForallProp___hyg_2828_(lean_object*);
|
||||
lean_object* l_Lean_mkNot(lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__3;
|
||||
lean_object* l_Lean_Meta_Grind_updateLastTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__8;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__1___closed__3;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__7;
|
||||
|
|
@ -94,10 +104,14 @@ static lean_object* l_Lean_Meta_Grind_propagateForallPropDown___closed__8;
|
|||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__10;
|
||||
lean_object* l_Lean_MessageData_ofExpr(lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropDown___closed__5;
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateExistsDown(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_mkOfEqFalseCore(lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__8;
|
||||
lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_Grind_updateLastTag___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_name_append_index_after(lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_addLocalEMatchTheorems___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__2___closed__3;
|
||||
lean_object* l_Lean_Expr_constLevels_x21(lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_addLocalEMatchTheorems___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*);
|
||||
uint8_t lean_nat_dec_eq(lean_object*, lean_object*);
|
||||
|
|
@ -117,12 +131,15 @@ static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__2___closed
|
|||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__14;
|
||||
uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__13;
|
||||
lean_object* l___private_Lean_Meta_Tactic_Grind_PropagatorAttr_0__Lean_Meta_Grind_registerBuiltinPropagatorCore(lean_object*, uint8_t, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_mkEqTrueProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_mkOfEqTrueCore(lean_object*, lean_object*);
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_addLocalEMatchTheorems___lambda__1___closed__2;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropDown___closed__9;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___closed__2;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__7;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropDown___closed__14;
|
||||
static lean_object* l___regBuiltin_Lean_Meta_Grind_propagateExistsDown_declare__1____x40_Lean_Meta_Tactic_Grind_ForallProp___hyg_2828____closed__1;
|
||||
lean_object* lean_array_mk(lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_isEqFalse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_pushEqFalse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -131,20 +148,25 @@ static lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_G
|
|||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__2___closed__2;
|
||||
lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__1___closed__1;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__3;
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateForallPropUp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_isEqTrue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Expr_headBeta(lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_isEqTrueHyp_x3f___lambda__2___boxed(lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_preprocess(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp_propagateImpliesUp___lambda__1___closed__1;
|
||||
lean_object* lean_nat_add(lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_ForallProp_0__Lean_Meta_Grind_addLocalEMatchTheorems(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateExistsDown___closed__1;
|
||||
uint8_t l_Lean_Exception_isRuntime(lean_object*);
|
||||
lean_object* l_Lean_Expr_lam___override(lean_object*, lean_object*, lean_object*, uint8_t);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__6;
|
||||
lean_object* l_Lean_mkApp5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__3___closed__2;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropUp___lambda__2___closed__5;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__5;
|
||||
static lean_object* l_Lean_Meta_Grind_propagateForallPropDown___closed__11;
|
||||
lean_object* l_Lean_Meta_Grind_getConfig___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_expr_instantiate1(lean_object*, lean_object*);
|
||||
|
|
@ -4878,6 +4900,377 @@ lean_dec(x_4);
|
|||
return x_14;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__1() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
x_1 = lean_mk_string_unchecked("Not", 3, 3);
|
||||
return x_1;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__2() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = lean_box(0);
|
||||
x_2 = l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__1;
|
||||
x_3 = l_Lean_Name_str___override(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__3() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = lean_box(0);
|
||||
x_2 = l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__2;
|
||||
x_3 = l_Lean_Expr_const___override(x_2, x_1);
|
||||
return x_3;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__4() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2;
|
||||
x_1 = lean_unsigned_to_nat(0u);
|
||||
x_2 = l_Lean_Expr_bvar___override(x_1);
|
||||
return x_2;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__5() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
x_1 = lean_mk_string_unchecked("x", 1, 1);
|
||||
return x_1;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__6() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = lean_box(0);
|
||||
x_2 = l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__5;
|
||||
x_3 = l_Lean_Name_str___override(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__7() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
x_1 = lean_mk_string_unchecked("forall_not_of_not_exists", 24, 24);
|
||||
return x_1;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__8() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = lean_box(0);
|
||||
x_2 = l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__7;
|
||||
x_3 = l_Lean_Name_str___override(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
}
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23;
|
||||
x_14 = l_Lean_Expr_constLevels_x21(x_2);
|
||||
x_15 = l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__4;
|
||||
lean_inc(x_4);
|
||||
x_16 = l_Lean_Expr_app___override(x_4, x_15);
|
||||
x_17 = l_Lean_Expr_headBeta(x_16);
|
||||
x_18 = l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__3;
|
||||
x_19 = l_Lean_Expr_app___override(x_18, x_17);
|
||||
x_20 = l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__6;
|
||||
x_21 = 0;
|
||||
lean_inc(x_3);
|
||||
x_22 = l_Lean_Expr_forallE___override(x_20, x_3, x_19, x_21);
|
||||
lean_inc(x_12);
|
||||
lean_inc(x_11);
|
||||
lean_inc(x_10);
|
||||
lean_inc(x_9);
|
||||
lean_inc(x_8);
|
||||
lean_inc(x_7);
|
||||
lean_inc(x_6);
|
||||
lean_inc(x_5);
|
||||
lean_inc(x_1);
|
||||
x_23 = l_Lean_Meta_Grind_mkEqFalseProof(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13);
|
||||
if (lean_obj_tag(x_23) == 0)
|
||||
{
|
||||
lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33;
|
||||
x_24 = lean_ctor_get(x_23, 0);
|
||||
lean_inc(x_24);
|
||||
x_25 = lean_ctor_get(x_23, 1);
|
||||
lean_inc(x_25);
|
||||
lean_dec(x_23);
|
||||
x_26 = l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__8;
|
||||
x_27 = l_Lean_Expr_const___override(x_26, x_14);
|
||||
lean_inc(x_1);
|
||||
x_28 = l_Lean_Meta_mkOfEqFalseCore(x_1, x_24);
|
||||
x_29 = l_Lean_mkApp3(x_27, x_3, x_4, x_28);
|
||||
x_30 = l_Lean_Meta_Grind_getGeneration(x_1, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_25);
|
||||
lean_dec(x_1);
|
||||
x_31 = lean_ctor_get(x_30, 0);
|
||||
lean_inc(x_31);
|
||||
x_32 = lean_ctor_get(x_30, 1);
|
||||
lean_inc(x_32);
|
||||
lean_dec(x_30);
|
||||
x_33 = l_Lean_Meta_Grind_addNewRawFact(x_29, x_22, x_31, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_32);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
return x_33;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_34;
|
||||
lean_dec(x_22);
|
||||
lean_dec(x_14);
|
||||
lean_dec(x_12);
|
||||
lean_dec(x_11);
|
||||
lean_dec(x_10);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
lean_dec(x_4);
|
||||
lean_dec(x_3);
|
||||
lean_dec(x_1);
|
||||
x_34 = !lean_is_exclusive(x_23);
|
||||
if (x_34 == 0)
|
||||
{
|
||||
return x_23;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_35; lean_object* x_36; lean_object* x_37;
|
||||
x_35 = lean_ctor_get(x_23, 0);
|
||||
x_36 = lean_ctor_get(x_23, 1);
|
||||
lean_inc(x_36);
|
||||
lean_inc(x_35);
|
||||
lean_dec(x_23);
|
||||
x_37 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_37, 0, x_35);
|
||||
lean_ctor_set(x_37, 1, x_36);
|
||||
return x_37;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_11; lean_object* x_12;
|
||||
x_11 = lean_box(0);
|
||||
x_12 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_12, 0, x_11);
|
||||
lean_ctor_set(x_12, 1, x_10);
|
||||
return x_12;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Meta_Grind_propagateExistsDown___closed__1() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Grind_propagateExistsDown___lambda__2___boxed), 10, 0);
|
||||
return x_1;
|
||||
}
|
||||
}
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateExistsDown(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_11;
|
||||
lean_inc(x_1);
|
||||
x_11 = l_Lean_Meta_Grind_isEqFalse(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
if (lean_obj_tag(x_11) == 0)
|
||||
{
|
||||
lean_object* x_12; uint8_t x_13;
|
||||
x_12 = lean_ctor_get(x_11, 0);
|
||||
lean_inc(x_12);
|
||||
x_13 = lean_unbox(x_12);
|
||||
lean_dec(x_12);
|
||||
if (x_13 == 0)
|
||||
{
|
||||
uint8_t x_14;
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
lean_dec(x_4);
|
||||
lean_dec(x_3);
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_14 = !lean_is_exclusive(x_11);
|
||||
if (x_14 == 0)
|
||||
{
|
||||
lean_object* x_15; lean_object* x_16;
|
||||
x_15 = lean_ctor_get(x_11, 0);
|
||||
lean_dec(x_15);
|
||||
x_16 = lean_box(0);
|
||||
lean_ctor_set(x_11, 0, x_16);
|
||||
return x_11;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_17; lean_object* x_18; lean_object* x_19;
|
||||
x_17 = lean_ctor_get(x_11, 1);
|
||||
lean_inc(x_17);
|
||||
lean_dec(x_11);
|
||||
x_18 = lean_box(0);
|
||||
x_19 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_19, 0, x_18);
|
||||
lean_ctor_set(x_19, 1, x_17);
|
||||
return x_19;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23;
|
||||
x_20 = lean_ctor_get(x_11, 1);
|
||||
lean_inc(x_20);
|
||||
lean_dec(x_11);
|
||||
x_21 = l_Lean_Meta_Grind_propagateExistsDown___closed__1;
|
||||
lean_inc(x_1);
|
||||
x_22 = l_Lean_Expr_cleanupAnnotations(x_1);
|
||||
x_23 = l_Lean_Expr_isApp(x_22);
|
||||
if (x_23 == 0)
|
||||
{
|
||||
lean_object* x_24; lean_object* x_25;
|
||||
lean_dec(x_22);
|
||||
lean_dec(x_1);
|
||||
x_24 = lean_box(0);
|
||||
x_25 = lean_apply_10(x_21, x_24, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20);
|
||||
return x_25;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_26; lean_object* x_27; uint8_t x_28;
|
||||
x_26 = l_Lean_Expr_appArg(x_22, lean_box(0));
|
||||
x_27 = l_Lean_Expr_appFnCleanup(x_22, lean_box(0));
|
||||
x_28 = l_Lean_Expr_isApp(x_27);
|
||||
if (x_28 == 0)
|
||||
{
|
||||
lean_object* x_29; lean_object* x_30;
|
||||
lean_dec(x_27);
|
||||
lean_dec(x_26);
|
||||
lean_dec(x_1);
|
||||
x_29 = lean_box(0);
|
||||
x_30 = lean_apply_10(x_21, x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20);
|
||||
return x_30;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34;
|
||||
x_31 = l_Lean_Expr_appArg(x_27, lean_box(0));
|
||||
x_32 = l_Lean_Expr_appFnCleanup(x_27, lean_box(0));
|
||||
x_33 = l_Lean_Meta_Grind_propagateForallPropDown___closed__12;
|
||||
x_34 = l_Lean_Expr_isConstOf(x_32, x_33);
|
||||
if (x_34 == 0)
|
||||
{
|
||||
lean_object* x_35; lean_object* x_36;
|
||||
lean_dec(x_32);
|
||||
lean_dec(x_31);
|
||||
lean_dec(x_26);
|
||||
lean_dec(x_1);
|
||||
x_35 = lean_box(0);
|
||||
x_36 = lean_apply_10(x_21, x_35, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20);
|
||||
return x_36;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_37;
|
||||
x_37 = l_Lean_Meta_Grind_propagateExistsDown___lambda__1(x_1, x_32, x_31, x_26, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_20);
|
||||
lean_dec(x_32);
|
||||
return x_37;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_38;
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
lean_dec(x_4);
|
||||
lean_dec(x_3);
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_38 = !lean_is_exclusive(x_11);
|
||||
if (x_38 == 0)
|
||||
{
|
||||
return x_11;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_39; lean_object* x_40; lean_object* x_41;
|
||||
x_39 = lean_ctor_get(x_11, 0);
|
||||
x_40 = lean_ctor_get(x_11, 1);
|
||||
lean_inc(x_40);
|
||||
lean_inc(x_39);
|
||||
lean_dec(x_11);
|
||||
x_41 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_41, 0, x_39);
|
||||
lean_ctor_set(x_41, 1, x_40);
|
||||
return x_41;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_14;
|
||||
x_14 = l_Lean_Meta_Grind_propagateExistsDown___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13);
|
||||
lean_dec(x_2);
|
||||
return x_14;
|
||||
}
|
||||
}
|
||||
LEAN_EXPORT lean_object* l_Lean_Meta_Grind_propagateExistsDown___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_11;
|
||||
x_11 = l_Lean_Meta_Grind_propagateExistsDown___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
lean_dec(x_4);
|
||||
lean_dec(x_3);
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
return x_11;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l___regBuiltin_Lean_Meta_Grind_propagateExistsDown_declare__1____x40_Lean_Meta_Tactic_Grind_ForallProp___hyg_2828____closed__1() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Grind_propagateExistsDown), 10, 0);
|
||||
return x_1;
|
||||
}
|
||||
}
|
||||
LEAN_EXPORT lean_object* l___regBuiltin_Lean_Meta_Grind_propagateExistsDown_declare__1____x40_Lean_Meta_Tactic_Grind_ForallProp___hyg_2828_(lean_object* x_1) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5;
|
||||
x_2 = l_Lean_Meta_Grind_propagateForallPropDown___closed__12;
|
||||
x_3 = 0;
|
||||
x_4 = l___regBuiltin_Lean_Meta_Grind_propagateExistsDown_declare__1____x40_Lean_Meta_Tactic_Grind_ForallProp___hyg_2828____closed__1;
|
||||
x_5 = l___private_Lean_Meta_Tactic_Grind_PropagatorAttr_0__Lean_Meta_Grind_registerBuiltinPropagatorCore(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
}
|
||||
}
|
||||
lean_object* initialize_Init_Grind_Lemmas(uint8_t builtin, lean_object*);
|
||||
lean_object* initialize_Lean_Meta_Tactic_Grind_Types(uint8_t builtin, lean_object*);
|
||||
lean_object* initialize_Lean_Meta_Tactic_Grind_Internalize(uint8_t builtin, lean_object*);
|
||||
|
|
@ -5009,7 +5402,30 @@ l_Lean_Meta_Grind_propagateForallPropDown___closed__13 = _init_l_Lean_Meta_Grind
|
|||
lean_mark_persistent(l_Lean_Meta_Grind_propagateForallPropDown___closed__13);
|
||||
l_Lean_Meta_Grind_propagateForallPropDown___closed__14 = _init_l_Lean_Meta_Grind_propagateForallPropDown___closed__14();
|
||||
lean_mark_persistent(l_Lean_Meta_Grind_propagateForallPropDown___closed__14);
|
||||
return lean_io_result_mk_ok(lean_box(0));
|
||||
l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__1 = _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__1();
|
||||
lean_mark_persistent(l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__1);
|
||||
l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__2 = _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__2();
|
||||
lean_mark_persistent(l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__2);
|
||||
l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__3 = _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__3();
|
||||
lean_mark_persistent(l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__3);
|
||||
l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__4 = _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__4();
|
||||
lean_mark_persistent(l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__4);
|
||||
l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__5 = _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__5();
|
||||
lean_mark_persistent(l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__5);
|
||||
l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__6 = _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__6();
|
||||
lean_mark_persistent(l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__6);
|
||||
l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__7 = _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__7();
|
||||
lean_mark_persistent(l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__7);
|
||||
l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__8 = _init_l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__8();
|
||||
lean_mark_persistent(l_Lean_Meta_Grind_propagateExistsDown___lambda__1___closed__8);
|
||||
l_Lean_Meta_Grind_propagateExistsDown___closed__1 = _init_l_Lean_Meta_Grind_propagateExistsDown___closed__1();
|
||||
lean_mark_persistent(l_Lean_Meta_Grind_propagateExistsDown___closed__1);
|
||||
l___regBuiltin_Lean_Meta_Grind_propagateExistsDown_declare__1____x40_Lean_Meta_Tactic_Grind_ForallProp___hyg_2828____closed__1 = _init_l___regBuiltin_Lean_Meta_Grind_propagateExistsDown_declare__1____x40_Lean_Meta_Tactic_Grind_ForallProp___hyg_2828____closed__1();
|
||||
lean_mark_persistent(l___regBuiltin_Lean_Meta_Grind_propagateExistsDown_declare__1____x40_Lean_Meta_Tactic_Grind_ForallProp___hyg_2828____closed__1);
|
||||
if (builtin) {res = l___regBuiltin_Lean_Meta_Grind_propagateExistsDown_declare__1____x40_Lean_Meta_Tactic_Grind_ForallProp___hyg_2828_(lean_io_mk_world());
|
||||
if (lean_io_result_is_error(res)) return res;
|
||||
lean_dec_ref(res);
|
||||
}return lean_io_result_mk_ok(lean_box(0));
|
||||
}
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
615
stage0/stdlib/Lean/Meta/Tactic/Grind/Internalize.c
generated
615
stage0/stdlib/Lean/Meta/Tactic/Grind/Internalize.c
generated
|
|
@ -23,7 +23,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_
|
|||
uint8_t lean_is_matcher(lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_activateTheoremPatterns___spec__2___boxed(lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_activateTheoremPatterns___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__3;
|
||||
extern lean_object* l___private_Lean_Meta_Tactic_Grind_EMatchTheorem_0__Lean_Meta_Grind_dontCare;
|
||||
LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_internalizeImpl___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Meta_Grind_addCongrTable___spec__5___closed__1;
|
||||
|
|
@ -51,7 +50,6 @@ uint8_t l_Lean_Expr_isDIte(lean_object*);
|
|||
static lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___closed__3;
|
||||
lean_object* l_Lean_Meta_Grind_eraseIrrelevantMData___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t lean_usize_dec_le(size_t, size_t);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_addCongrTable___closed__4;
|
||||
LEAN_EXPORT lean_object* l_List_filterTR_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_activateTheoremPatterns___spec__4(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -102,7 +100,6 @@ uint8_t lean_usize_dec_eq(size_t, size_t);
|
|||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_internalizeImpl___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_propagateUnitLike___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_preprocessGroundPattern___closed__2;
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_propagateUnitLike___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_activateTheorem___closed__2;
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_updateAppMap___closed__1;
|
||||
|
|
@ -136,14 +133,12 @@ lean_object* l_Lean_Expr_cleanupAnnotations(lean_object*);
|
|||
lean_object* l_Lean_stringToMessageData(lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_internalizeImpl___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_mkApp4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findEntryAtAux___at_Lean_Meta_Grind_addCongrTable___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addMatchEqns___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_updateAppMap___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Meta_Grind_EMatchTheorems_isErased(lean_object*, lean_object*);
|
||||
static lean_object* l_Lean_Meta_Grind_addCongrTable___lambda__2___closed__7;
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_pushCastHEqs___lambda__1___closed__1;
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__1;
|
||||
lean_object* l_Lean_Expr_appArg_x21(lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_propagateUp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Expr_isBVar(lean_object*);
|
||||
|
|
@ -386,6 +381,7 @@ static lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_
|
|||
static lean_object* l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_activateTheoremPatterns___spec__5___closed__1;
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_extParentsToIgnore___closed__2;
|
||||
size_t lean_usize_add(size_t, size_t);
|
||||
static lean_object* l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__4;
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_propagateUnitLike(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_array_uget(lean_object*, size_t);
|
||||
size_t lean_array_size(lean_object*);
|
||||
|
|
@ -422,12 +418,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_
|
|||
uint64_t l_Lean_Meta_TransparencyMode_toUInt64(uint8_t);
|
||||
lean_object* lean_nat_add(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Meta_Grind_congrPlaceholderProof;
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_checkAndAddSplitCandidate___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_checkAndAddSplitCandidate___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint64_t l_Lean_HeadIndex_hash(lean_object*);
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__2;
|
||||
static lean_object* l_Lean_Meta_Grind_addCongrTable___closed__3;
|
||||
static lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_internalizeImpl___lambda__3___closed__18;
|
||||
static lean_object* l_Lean_Meta_Grind_addCongrTable___lambda__2___closed__8;
|
||||
|
|
@ -437,6 +431,7 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*);
|
|||
LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Meta_Grind_activateTheorem___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_MessageData_ofName(lean_object*);
|
||||
lean_object* l___private_Init_Data_Repr_0__Nat_reprFast(lean_object*);
|
||||
lean_object* l_Lean_Meta_Grind_addSplitCandidate(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_isLitValue(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt___spec__1___lambda__2___boxed(lean_object**);
|
||||
|
|
@ -4211,556 +4206,6 @@ lean_dec(x_2);
|
|||
return x_11;
|
||||
}
|
||||
}
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15;
|
||||
x_12 = lean_st_ref_take(x_3, x_11);
|
||||
x_13 = lean_ctor_get(x_12, 0);
|
||||
lean_inc(x_13);
|
||||
x_14 = lean_ctor_get(x_13, 12);
|
||||
lean_inc(x_14);
|
||||
x_15 = !lean_is_exclusive(x_12);
|
||||
if (x_15 == 0)
|
||||
{
|
||||
lean_object* x_16; lean_object* x_17; uint8_t x_18;
|
||||
x_16 = lean_ctor_get(x_12, 1);
|
||||
x_17 = lean_ctor_get(x_12, 0);
|
||||
lean_dec(x_17);
|
||||
x_18 = !lean_is_exclusive(x_13);
|
||||
if (x_18 == 0)
|
||||
{
|
||||
lean_object* x_19; uint8_t x_20;
|
||||
x_19 = lean_ctor_get(x_13, 12);
|
||||
lean_dec(x_19);
|
||||
x_20 = !lean_is_exclusive(x_14);
|
||||
if (x_20 == 0)
|
||||
{
|
||||
lean_object* x_21; lean_object* x_22; uint8_t x_23;
|
||||
x_21 = lean_ctor_get(x_14, 1);
|
||||
lean_ctor_set_tag(x_12, 1);
|
||||
lean_ctor_set(x_12, 1, x_21);
|
||||
lean_ctor_set(x_12, 0, x_1);
|
||||
lean_ctor_set(x_14, 1, x_12);
|
||||
x_22 = lean_st_ref_set(x_3, x_13, x_16);
|
||||
x_23 = !lean_is_exclusive(x_22);
|
||||
if (x_23 == 0)
|
||||
{
|
||||
lean_object* x_24; lean_object* x_25;
|
||||
x_24 = lean_ctor_get(x_22, 0);
|
||||
lean_dec(x_24);
|
||||
x_25 = lean_box(0);
|
||||
lean_ctor_set(x_22, 0, x_25);
|
||||
return x_22;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_26; lean_object* x_27; lean_object* x_28;
|
||||
x_26 = lean_ctor_get(x_22, 1);
|
||||
lean_inc(x_26);
|
||||
lean_dec(x_22);
|
||||
x_27 = lean_box(0);
|
||||
x_28 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_28, 0, x_27);
|
||||
lean_ctor_set(x_28, 1, x_26);
|
||||
return x_28;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39;
|
||||
x_29 = lean_ctor_get(x_14, 0);
|
||||
x_30 = lean_ctor_get(x_14, 2);
|
||||
x_31 = lean_ctor_get(x_14, 3);
|
||||
x_32 = lean_ctor_get(x_14, 4);
|
||||
x_33 = lean_ctor_get(x_14, 1);
|
||||
lean_inc(x_32);
|
||||
lean_inc(x_31);
|
||||
lean_inc(x_30);
|
||||
lean_inc(x_33);
|
||||
lean_inc(x_29);
|
||||
lean_dec(x_14);
|
||||
lean_ctor_set_tag(x_12, 1);
|
||||
lean_ctor_set(x_12, 1, x_33);
|
||||
lean_ctor_set(x_12, 0, x_1);
|
||||
x_34 = lean_alloc_ctor(0, 5, 0);
|
||||
lean_ctor_set(x_34, 0, x_29);
|
||||
lean_ctor_set(x_34, 1, x_12);
|
||||
lean_ctor_set(x_34, 2, x_30);
|
||||
lean_ctor_set(x_34, 3, x_31);
|
||||
lean_ctor_set(x_34, 4, x_32);
|
||||
lean_ctor_set(x_13, 12, x_34);
|
||||
x_35 = lean_st_ref_set(x_3, x_13, x_16);
|
||||
x_36 = lean_ctor_get(x_35, 1);
|
||||
lean_inc(x_36);
|
||||
if (lean_is_exclusive(x_35)) {
|
||||
lean_ctor_release(x_35, 0);
|
||||
lean_ctor_release(x_35, 1);
|
||||
x_37 = x_35;
|
||||
} else {
|
||||
lean_dec_ref(x_35);
|
||||
x_37 = lean_box(0);
|
||||
}
|
||||
x_38 = lean_box(0);
|
||||
if (lean_is_scalar(x_37)) {
|
||||
x_39 = lean_alloc_ctor(0, 2, 0);
|
||||
} else {
|
||||
x_39 = x_37;
|
||||
}
|
||||
lean_ctor_set(x_39, 0, x_38);
|
||||
lean_ctor_set(x_39, 1, x_36);
|
||||
return x_39;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68;
|
||||
x_40 = lean_ctor_get(x_13, 0);
|
||||
x_41 = lean_ctor_get(x_13, 1);
|
||||
x_42 = lean_ctor_get(x_13, 2);
|
||||
x_43 = lean_ctor_get(x_13, 3);
|
||||
x_44 = lean_ctor_get(x_13, 4);
|
||||
x_45 = lean_ctor_get(x_13, 5);
|
||||
x_46 = lean_ctor_get(x_13, 6);
|
||||
x_47 = lean_ctor_get_uint8(x_13, sizeof(void*)*16);
|
||||
x_48 = lean_ctor_get(x_13, 7);
|
||||
x_49 = lean_ctor_get(x_13, 8);
|
||||
x_50 = lean_ctor_get(x_13, 9);
|
||||
x_51 = lean_ctor_get(x_13, 10);
|
||||
x_52 = lean_ctor_get(x_13, 11);
|
||||
x_53 = lean_ctor_get(x_13, 13);
|
||||
x_54 = lean_ctor_get(x_13, 14);
|
||||
x_55 = lean_ctor_get(x_13, 15);
|
||||
lean_inc(x_55);
|
||||
lean_inc(x_54);
|
||||
lean_inc(x_53);
|
||||
lean_inc(x_52);
|
||||
lean_inc(x_51);
|
||||
lean_inc(x_50);
|
||||
lean_inc(x_49);
|
||||
lean_inc(x_48);
|
||||
lean_inc(x_46);
|
||||
lean_inc(x_45);
|
||||
lean_inc(x_44);
|
||||
lean_inc(x_43);
|
||||
lean_inc(x_42);
|
||||
lean_inc(x_41);
|
||||
lean_inc(x_40);
|
||||
lean_dec(x_13);
|
||||
x_56 = lean_ctor_get(x_14, 0);
|
||||
lean_inc(x_56);
|
||||
x_57 = lean_ctor_get(x_14, 2);
|
||||
lean_inc(x_57);
|
||||
x_58 = lean_ctor_get(x_14, 3);
|
||||
lean_inc(x_58);
|
||||
x_59 = lean_ctor_get(x_14, 4);
|
||||
lean_inc(x_59);
|
||||
x_60 = lean_ctor_get(x_14, 1);
|
||||
lean_inc(x_60);
|
||||
if (lean_is_exclusive(x_14)) {
|
||||
lean_ctor_release(x_14, 0);
|
||||
lean_ctor_release(x_14, 1);
|
||||
lean_ctor_release(x_14, 2);
|
||||
lean_ctor_release(x_14, 3);
|
||||
lean_ctor_release(x_14, 4);
|
||||
x_61 = x_14;
|
||||
} else {
|
||||
lean_dec_ref(x_14);
|
||||
x_61 = lean_box(0);
|
||||
}
|
||||
lean_ctor_set_tag(x_12, 1);
|
||||
lean_ctor_set(x_12, 1, x_60);
|
||||
lean_ctor_set(x_12, 0, x_1);
|
||||
if (lean_is_scalar(x_61)) {
|
||||
x_62 = lean_alloc_ctor(0, 5, 0);
|
||||
} else {
|
||||
x_62 = x_61;
|
||||
}
|
||||
lean_ctor_set(x_62, 0, x_56);
|
||||
lean_ctor_set(x_62, 1, x_12);
|
||||
lean_ctor_set(x_62, 2, x_57);
|
||||
lean_ctor_set(x_62, 3, x_58);
|
||||
lean_ctor_set(x_62, 4, x_59);
|
||||
x_63 = lean_alloc_ctor(0, 16, 1);
|
||||
lean_ctor_set(x_63, 0, x_40);
|
||||
lean_ctor_set(x_63, 1, x_41);
|
||||
lean_ctor_set(x_63, 2, x_42);
|
||||
lean_ctor_set(x_63, 3, x_43);
|
||||
lean_ctor_set(x_63, 4, x_44);
|
||||
lean_ctor_set(x_63, 5, x_45);
|
||||
lean_ctor_set(x_63, 6, x_46);
|
||||
lean_ctor_set(x_63, 7, x_48);
|
||||
lean_ctor_set(x_63, 8, x_49);
|
||||
lean_ctor_set(x_63, 9, x_50);
|
||||
lean_ctor_set(x_63, 10, x_51);
|
||||
lean_ctor_set(x_63, 11, x_52);
|
||||
lean_ctor_set(x_63, 12, x_62);
|
||||
lean_ctor_set(x_63, 13, x_53);
|
||||
lean_ctor_set(x_63, 14, x_54);
|
||||
lean_ctor_set(x_63, 15, x_55);
|
||||
lean_ctor_set_uint8(x_63, sizeof(void*)*16, x_47);
|
||||
x_64 = lean_st_ref_set(x_3, x_63, x_16);
|
||||
x_65 = lean_ctor_get(x_64, 1);
|
||||
lean_inc(x_65);
|
||||
if (lean_is_exclusive(x_64)) {
|
||||
lean_ctor_release(x_64, 0);
|
||||
lean_ctor_release(x_64, 1);
|
||||
x_66 = x_64;
|
||||
} else {
|
||||
lean_dec_ref(x_64);
|
||||
x_66 = lean_box(0);
|
||||
}
|
||||
x_67 = lean_box(0);
|
||||
if (lean_is_scalar(x_66)) {
|
||||
x_68 = lean_alloc_ctor(0, 2, 0);
|
||||
} else {
|
||||
x_68 = x_66;
|
||||
}
|
||||
lean_ctor_set(x_68, 0, x_67);
|
||||
lean_ctor_set(x_68, 1, x_65);
|
||||
return x_68;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100;
|
||||
x_69 = lean_ctor_get(x_12, 1);
|
||||
lean_inc(x_69);
|
||||
lean_dec(x_12);
|
||||
x_70 = lean_ctor_get(x_13, 0);
|
||||
lean_inc(x_70);
|
||||
x_71 = lean_ctor_get(x_13, 1);
|
||||
lean_inc(x_71);
|
||||
x_72 = lean_ctor_get(x_13, 2);
|
||||
lean_inc(x_72);
|
||||
x_73 = lean_ctor_get(x_13, 3);
|
||||
lean_inc(x_73);
|
||||
x_74 = lean_ctor_get(x_13, 4);
|
||||
lean_inc(x_74);
|
||||
x_75 = lean_ctor_get(x_13, 5);
|
||||
lean_inc(x_75);
|
||||
x_76 = lean_ctor_get(x_13, 6);
|
||||
lean_inc(x_76);
|
||||
x_77 = lean_ctor_get_uint8(x_13, sizeof(void*)*16);
|
||||
x_78 = lean_ctor_get(x_13, 7);
|
||||
lean_inc(x_78);
|
||||
x_79 = lean_ctor_get(x_13, 8);
|
||||
lean_inc(x_79);
|
||||
x_80 = lean_ctor_get(x_13, 9);
|
||||
lean_inc(x_80);
|
||||
x_81 = lean_ctor_get(x_13, 10);
|
||||
lean_inc(x_81);
|
||||
x_82 = lean_ctor_get(x_13, 11);
|
||||
lean_inc(x_82);
|
||||
x_83 = lean_ctor_get(x_13, 13);
|
||||
lean_inc(x_83);
|
||||
x_84 = lean_ctor_get(x_13, 14);
|
||||
lean_inc(x_84);
|
||||
x_85 = lean_ctor_get(x_13, 15);
|
||||
lean_inc(x_85);
|
||||
if (lean_is_exclusive(x_13)) {
|
||||
lean_ctor_release(x_13, 0);
|
||||
lean_ctor_release(x_13, 1);
|
||||
lean_ctor_release(x_13, 2);
|
||||
lean_ctor_release(x_13, 3);
|
||||
lean_ctor_release(x_13, 4);
|
||||
lean_ctor_release(x_13, 5);
|
||||
lean_ctor_release(x_13, 6);
|
||||
lean_ctor_release(x_13, 7);
|
||||
lean_ctor_release(x_13, 8);
|
||||
lean_ctor_release(x_13, 9);
|
||||
lean_ctor_release(x_13, 10);
|
||||
lean_ctor_release(x_13, 11);
|
||||
lean_ctor_release(x_13, 12);
|
||||
lean_ctor_release(x_13, 13);
|
||||
lean_ctor_release(x_13, 14);
|
||||
lean_ctor_release(x_13, 15);
|
||||
x_86 = x_13;
|
||||
} else {
|
||||
lean_dec_ref(x_13);
|
||||
x_86 = lean_box(0);
|
||||
}
|
||||
x_87 = lean_ctor_get(x_14, 0);
|
||||
lean_inc(x_87);
|
||||
x_88 = lean_ctor_get(x_14, 2);
|
||||
lean_inc(x_88);
|
||||
x_89 = lean_ctor_get(x_14, 3);
|
||||
lean_inc(x_89);
|
||||
x_90 = lean_ctor_get(x_14, 4);
|
||||
lean_inc(x_90);
|
||||
x_91 = lean_ctor_get(x_14, 1);
|
||||
lean_inc(x_91);
|
||||
if (lean_is_exclusive(x_14)) {
|
||||
lean_ctor_release(x_14, 0);
|
||||
lean_ctor_release(x_14, 1);
|
||||
lean_ctor_release(x_14, 2);
|
||||
lean_ctor_release(x_14, 3);
|
||||
lean_ctor_release(x_14, 4);
|
||||
x_92 = x_14;
|
||||
} else {
|
||||
lean_dec_ref(x_14);
|
||||
x_92 = lean_box(0);
|
||||
}
|
||||
x_93 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_93, 0, x_1);
|
||||
lean_ctor_set(x_93, 1, x_91);
|
||||
if (lean_is_scalar(x_92)) {
|
||||
x_94 = lean_alloc_ctor(0, 5, 0);
|
||||
} else {
|
||||
x_94 = x_92;
|
||||
}
|
||||
lean_ctor_set(x_94, 0, x_87);
|
||||
lean_ctor_set(x_94, 1, x_93);
|
||||
lean_ctor_set(x_94, 2, x_88);
|
||||
lean_ctor_set(x_94, 3, x_89);
|
||||
lean_ctor_set(x_94, 4, x_90);
|
||||
if (lean_is_scalar(x_86)) {
|
||||
x_95 = lean_alloc_ctor(0, 16, 1);
|
||||
} else {
|
||||
x_95 = x_86;
|
||||
}
|
||||
lean_ctor_set(x_95, 0, x_70);
|
||||
lean_ctor_set(x_95, 1, x_71);
|
||||
lean_ctor_set(x_95, 2, x_72);
|
||||
lean_ctor_set(x_95, 3, x_73);
|
||||
lean_ctor_set(x_95, 4, x_74);
|
||||
lean_ctor_set(x_95, 5, x_75);
|
||||
lean_ctor_set(x_95, 6, x_76);
|
||||
lean_ctor_set(x_95, 7, x_78);
|
||||
lean_ctor_set(x_95, 8, x_79);
|
||||
lean_ctor_set(x_95, 9, x_80);
|
||||
lean_ctor_set(x_95, 10, x_81);
|
||||
lean_ctor_set(x_95, 11, x_82);
|
||||
lean_ctor_set(x_95, 12, x_94);
|
||||
lean_ctor_set(x_95, 13, x_83);
|
||||
lean_ctor_set(x_95, 14, x_84);
|
||||
lean_ctor_set(x_95, 15, x_85);
|
||||
lean_ctor_set_uint8(x_95, sizeof(void*)*16, x_77);
|
||||
x_96 = lean_st_ref_set(x_3, x_95, x_69);
|
||||
x_97 = lean_ctor_get(x_96, 1);
|
||||
lean_inc(x_97);
|
||||
if (lean_is_exclusive(x_96)) {
|
||||
lean_ctor_release(x_96, 0);
|
||||
lean_ctor_release(x_96, 1);
|
||||
x_98 = x_96;
|
||||
} else {
|
||||
lean_dec_ref(x_96);
|
||||
x_98 = lean_box(0);
|
||||
}
|
||||
x_99 = lean_box(0);
|
||||
if (lean_is_scalar(x_98)) {
|
||||
x_100 = lean_alloc_ctor(0, 2, 0);
|
||||
} else {
|
||||
x_100 = x_98;
|
||||
}
|
||||
lean_ctor_set(x_100, 0, x_99);
|
||||
lean_ctor_set(x_100, 1, x_97);
|
||||
return x_100;
|
||||
}
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__1() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
x_1 = lean_mk_string_unchecked("split", 5, 5);
|
||||
return x_1;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__2() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
x_1 = lean_mk_string_unchecked("candidate", 9, 9);
|
||||
return x_1;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__3() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4;
|
||||
x_1 = l_Lean_Meta_Grind_addCongrTable___lambda__2___closed__1;
|
||||
x_2 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__1;
|
||||
x_3 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__2;
|
||||
x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3);
|
||||
return x_4;
|
||||
}
|
||||
}
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14;
|
||||
x_11 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__3;
|
||||
x_12 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Grind_updateLastTag___spec__1(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
x_13 = lean_ctor_get(x_12, 0);
|
||||
lean_inc(x_13);
|
||||
x_14 = lean_unbox(x_13);
|
||||
lean_dec(x_13);
|
||||
if (x_14 == 0)
|
||||
{
|
||||
lean_object* x_15; lean_object* x_16; lean_object* x_17;
|
||||
x_15 = lean_ctor_get(x_12, 1);
|
||||
lean_inc(x_15);
|
||||
lean_dec(x_12);
|
||||
x_16 = lean_box(0);
|
||||
x_17 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___lambda__1(x_1, x_16, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_15);
|
||||
return x_17;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_18;
|
||||
x_18 = !lean_is_exclusive(x_12);
|
||||
if (x_18 == 0)
|
||||
{
|
||||
lean_object* x_19; lean_object* x_20; lean_object* x_21;
|
||||
x_19 = lean_ctor_get(x_12, 1);
|
||||
x_20 = lean_ctor_get(x_12, 0);
|
||||
lean_dec(x_20);
|
||||
x_21 = l_Lean_Meta_Grind_updateLastTag(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19);
|
||||
if (lean_obj_tag(x_21) == 0)
|
||||
{
|
||||
lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29;
|
||||
x_22 = lean_ctor_get(x_21, 1);
|
||||
lean_inc(x_22);
|
||||
lean_dec(x_21);
|
||||
lean_inc(x_1);
|
||||
x_23 = l_Lean_MessageData_ofExpr(x_1);
|
||||
x_24 = l_Lean_Meta_Grind_addCongrTable___lambda__2___closed__6;
|
||||
lean_ctor_set_tag(x_12, 7);
|
||||
lean_ctor_set(x_12, 1, x_23);
|
||||
lean_ctor_set(x_12, 0, x_24);
|
||||
x_25 = lean_alloc_ctor(7, 2, 0);
|
||||
lean_ctor_set(x_25, 0, x_12);
|
||||
lean_ctor_set(x_25, 1, x_24);
|
||||
x_26 = l_Lean_addTrace___at_Lean_Meta_Grind_updateLastTag___spec__2(x_11, x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_22);
|
||||
x_27 = lean_ctor_get(x_26, 0);
|
||||
lean_inc(x_27);
|
||||
x_28 = lean_ctor_get(x_26, 1);
|
||||
lean_inc(x_28);
|
||||
lean_dec(x_26);
|
||||
x_29 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___lambda__1(x_1, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_28);
|
||||
lean_dec(x_27);
|
||||
return x_29;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_30;
|
||||
lean_free_object(x_12);
|
||||
lean_dec(x_1);
|
||||
x_30 = !lean_is_exclusive(x_21);
|
||||
if (x_30 == 0)
|
||||
{
|
||||
return x_21;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_31; lean_object* x_32; lean_object* x_33;
|
||||
x_31 = lean_ctor_get(x_21, 0);
|
||||
x_32 = lean_ctor_get(x_21, 1);
|
||||
lean_inc(x_32);
|
||||
lean_inc(x_31);
|
||||
lean_dec(x_21);
|
||||
x_33 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_33, 0, x_31);
|
||||
lean_ctor_set(x_33, 1, x_32);
|
||||
return x_33;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_34; lean_object* x_35;
|
||||
x_34 = lean_ctor_get(x_12, 1);
|
||||
lean_inc(x_34);
|
||||
lean_dec(x_12);
|
||||
x_35 = l_Lean_Meta_Grind_updateLastTag(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_34);
|
||||
if (lean_obj_tag(x_35) == 0)
|
||||
{
|
||||
lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44;
|
||||
x_36 = lean_ctor_get(x_35, 1);
|
||||
lean_inc(x_36);
|
||||
lean_dec(x_35);
|
||||
lean_inc(x_1);
|
||||
x_37 = l_Lean_MessageData_ofExpr(x_1);
|
||||
x_38 = l_Lean_Meta_Grind_addCongrTable___lambda__2___closed__6;
|
||||
x_39 = lean_alloc_ctor(7, 2, 0);
|
||||
lean_ctor_set(x_39, 0, x_38);
|
||||
lean_ctor_set(x_39, 1, x_37);
|
||||
x_40 = lean_alloc_ctor(7, 2, 0);
|
||||
lean_ctor_set(x_40, 0, x_39);
|
||||
lean_ctor_set(x_40, 1, x_38);
|
||||
x_41 = l_Lean_addTrace___at_Lean_Meta_Grind_updateLastTag___spec__2(x_11, x_40, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_36);
|
||||
x_42 = lean_ctor_get(x_41, 0);
|
||||
lean_inc(x_42);
|
||||
x_43 = lean_ctor_get(x_41, 1);
|
||||
lean_inc(x_43);
|
||||
lean_dec(x_41);
|
||||
x_44 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___lambda__1(x_1, x_42, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_43);
|
||||
lean_dec(x_42);
|
||||
return x_44;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48;
|
||||
lean_dec(x_1);
|
||||
x_45 = lean_ctor_get(x_35, 0);
|
||||
lean_inc(x_45);
|
||||
x_46 = lean_ctor_get(x_35, 1);
|
||||
lean_inc(x_46);
|
||||
if (lean_is_exclusive(x_35)) {
|
||||
lean_ctor_release(x_35, 0);
|
||||
lean_ctor_release(x_35, 1);
|
||||
x_47 = x_35;
|
||||
} else {
|
||||
lean_dec_ref(x_35);
|
||||
x_47 = lean_box(0);
|
||||
}
|
||||
if (lean_is_scalar(x_47)) {
|
||||
x_48 = lean_alloc_ctor(1, 2, 0);
|
||||
} else {
|
||||
x_48 = x_47;
|
||||
}
|
||||
lean_ctor_set(x_48, 0, x_45);
|
||||
lean_ctor_set(x_48, 1, x_46);
|
||||
return x_48;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_12;
|
||||
x_12 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
lean_dec(x_10);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
lean_dec(x_4);
|
||||
lean_dec(x_3);
|
||||
lean_dec(x_2);
|
||||
return x_12;
|
||||
}
|
||||
}
|
||||
LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_11;
|
||||
x_11 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
lean_dec(x_4);
|
||||
lean_dec(x_3);
|
||||
lean_dec(x_2);
|
||||
return x_11;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_forbiddenSplitTypes___closed__1() {
|
||||
_start:
|
||||
{
|
||||
|
|
@ -5058,14 +4503,14 @@ lean_object* x_28; lean_object* x_29;
|
|||
x_28 = lean_ctor_get(x_19, 1);
|
||||
lean_inc(x_28);
|
||||
lean_dec(x_19);
|
||||
x_29 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_28);
|
||||
x_29 = l_Lean_Meta_Grind_addSplitCandidate(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_28);
|
||||
return x_29;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_30;
|
||||
x_30 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_15);
|
||||
x_30 = l_Lean_Meta_Grind_addSplitCandidate(x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_15);
|
||||
return x_30;
|
||||
}
|
||||
}
|
||||
|
|
@ -5314,7 +4759,7 @@ lean_dec(x_27);
|
|||
x_34 = lean_ctor_get(x_26, 1);
|
||||
lean_inc(x_34);
|
||||
lean_dec(x_26);
|
||||
x_35 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34);
|
||||
x_35 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_34);
|
||||
lean_dec(x_10);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
|
|
@ -5416,7 +4861,7 @@ return x_14;
|
|||
else
|
||||
{
|
||||
lean_object* x_15;
|
||||
x_15 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
x_15 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
lean_dec(x_10);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
|
|
@ -5547,7 +4992,7 @@ else
|
|||
{
|
||||
lean_object* x_28;
|
||||
lean_free_object(x_20);
|
||||
x_28 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_23);
|
||||
x_28 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_23);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
|
|
@ -5588,7 +5033,7 @@ return x_35;
|
|||
else
|
||||
{
|
||||
lean_object* x_36;
|
||||
x_36 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_30);
|
||||
x_36 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_30);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
|
|
@ -5670,7 +5115,7 @@ else
|
|||
{
|
||||
lean_object* x_51;
|
||||
lean_dec(x_45);
|
||||
x_51 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_44);
|
||||
x_51 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_44);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
|
|
@ -5790,7 +5235,7 @@ return x_72;
|
|||
else
|
||||
{
|
||||
lean_object* x_73;
|
||||
x_73 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_68);
|
||||
x_73 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_68);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
|
|
@ -5848,7 +5293,7 @@ return x_83;
|
|||
else
|
||||
{
|
||||
lean_object* x_84;
|
||||
x_84 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_68);
|
||||
x_84 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_68);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
|
|
@ -5938,7 +5383,7 @@ else
|
|||
{
|
||||
lean_object* x_103;
|
||||
lean_free_object(x_96);
|
||||
x_103 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_99);
|
||||
x_103 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_99);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
|
|
@ -5951,7 +5396,7 @@ else
|
|||
lean_object* x_104;
|
||||
lean_free_object(x_96);
|
||||
lean_dec(x_98);
|
||||
x_104 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_99);
|
||||
x_104 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_99);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
|
|
@ -5990,7 +5435,7 @@ return x_110;
|
|||
else
|
||||
{
|
||||
lean_object* x_111;
|
||||
x_111 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_106);
|
||||
x_111 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_106);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
|
|
@ -6002,7 +5447,7 @@ else
|
|||
{
|
||||
lean_object* x_112;
|
||||
lean_dec(x_105);
|
||||
x_112 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_106);
|
||||
x_112 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_106);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
|
|
@ -19166,7 +18611,7 @@ LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_G
|
|||
_start:
|
||||
{
|
||||
lean_object* x_12;
|
||||
x_12 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
x_12 = l_Lean_Meta_Grind_addSplitCandidate(x_1, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
if (lean_obj_tag(x_12) == 0)
|
||||
{
|
||||
uint8_t x_13;
|
||||
|
|
@ -19237,10 +18682,18 @@ return x_1;
|
|||
static lean_object* _init_l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__3() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
x_1 = lean_mk_string_unchecked("candidate", 9, 9);
|
||||
return x_1;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__4() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4;
|
||||
x_1 = l_Lean_Meta_Grind_addCongrTable___lambda__2___closed__1;
|
||||
x_2 = l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__2;
|
||||
x_3 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__2;
|
||||
x_3 = l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__3;
|
||||
x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3);
|
||||
return x_4;
|
||||
}
|
||||
|
|
@ -19401,7 +18854,7 @@ lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint
|
|||
x_70 = lean_ctor_get(x_69, 1);
|
||||
lean_inc(x_70);
|
||||
lean_dec(x_69);
|
||||
x_71 = l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__3;
|
||||
x_71 = l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__4;
|
||||
x_72 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Grind_updateLastTag___spec__1(x_71, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_70);
|
||||
x_73 = lean_ctor_get(x_72, 0);
|
||||
lean_inc(x_73);
|
||||
|
|
@ -19765,7 +19218,7 @@ lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136;
|
|||
x_133 = lean_ctor_get(x_132, 1);
|
||||
lean_inc(x_133);
|
||||
lean_dec(x_132);
|
||||
x_134 = l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__3;
|
||||
x_134 = l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__4;
|
||||
x_135 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Grind_updateLastTag___spec__1(x_134, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_133);
|
||||
x_136 = lean_ctor_get(x_135, 0);
|
||||
lean_inc(x_136);
|
||||
|
|
@ -20217,7 +19670,7 @@ lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230;
|
|||
x_227 = lean_ctor_get(x_226, 1);
|
||||
lean_inc(x_227);
|
||||
lean_dec(x_226);
|
||||
x_228 = l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__3;
|
||||
x_228 = l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__4;
|
||||
x_229 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Grind_updateLastTag___spec__1(x_228, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_227);
|
||||
x_230 = lean_ctor_get(x_229, 0);
|
||||
lean_inc(x_230);
|
||||
|
|
@ -20754,7 +20207,7 @@ lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346;
|
|||
x_343 = lean_ctor_get(x_342, 1);
|
||||
lean_inc(x_343);
|
||||
lean_dec(x_342);
|
||||
x_344 = l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__3;
|
||||
x_344 = l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__4;
|
||||
x_345 = l_Lean_isTracingEnabledFor___at_Lean_Meta_Grind_updateLastTag___spec__1(x_344, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_343);
|
||||
x_346 = lean_ctor_get(x_345, 0);
|
||||
lean_inc(x_346);
|
||||
|
|
@ -30053,7 +29506,7 @@ _start:
|
|||
lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6;
|
||||
x_1 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_internalizeImpl___lambda__3___closed__1;
|
||||
x_2 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_internalizeImpl___lambda__3___closed__2;
|
||||
x_3 = lean_unsigned_to_nat(286u);
|
||||
x_3 = lean_unsigned_to_nat(281u);
|
||||
x_4 = lean_unsigned_to_nat(16u);
|
||||
x_5 = l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_internalizeImpl___lambda__3___closed__3;
|
||||
x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5);
|
||||
|
|
@ -32226,12 +31679,6 @@ l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_updateAppMap__
|
|||
lean_mark_persistent(l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_updateAppMap___closed__3);
|
||||
l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_updateAppMap___closed__4 = _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_updateAppMap___closed__4();
|
||||
lean_mark_persistent(l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_updateAppMap___closed__4);
|
||||
l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__1 = _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__1();
|
||||
lean_mark_persistent(l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__1);
|
||||
l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__2 = _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__2();
|
||||
lean_mark_persistent(l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__2);
|
||||
l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__3 = _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__3();
|
||||
lean_mark_persistent(l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidate___closed__3);
|
||||
l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_forbiddenSplitTypes___closed__1 = _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_forbiddenSplitTypes___closed__1();
|
||||
lean_mark_persistent(l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_forbiddenSplitTypes___closed__1);
|
||||
l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_forbiddenSplitTypes___closed__2 = _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_forbiddenSplitTypes___closed__2();
|
||||
|
|
@ -32383,6 +31830,8 @@ l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_
|
|||
lean_mark_persistent(l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__2);
|
||||
l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__3 = _init_l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__3();
|
||||
lean_mark_persistent(l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__3);
|
||||
l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__4 = _init_l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__4();
|
||||
lean_mark_persistent(l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___spec__1___closed__4);
|
||||
l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___closed__1 = _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___closed__1();
|
||||
lean_mark_persistent(l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___closed__1);
|
||||
l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___closed__2 = _init_l___private_Lean_Meta_Tactic_Grind_Internalize_0__Lean_Meta_Grind_addSplitCandidatesForExt_found___closed__2();
|
||||
|
|
|
|||
5
stage0/stdlib/Lean/Meta/Tactic/Grind/Intro.c
generated
5
stage0/stdlib/Lean/Meta/Tactic/Grind/Intro.c
generated
|
|
@ -383,12 +383,13 @@ x_1 = lean_box(0);
|
|||
x_2 = l_Lean_Meta_Grind_instInhabitedIntroResult___closed__2;
|
||||
x_3 = lean_unsigned_to_nat(0u);
|
||||
x_4 = l_Lean_PersistentHashMap_empty___at_Lean_Meta_Grind_Split_instInhabitedState___spec__1;
|
||||
x_5 = lean_alloc_ctor(0, 5, 0);
|
||||
x_5 = lean_alloc_ctor(0, 6, 0);
|
||||
lean_ctor_set(x_5, 0, x_2);
|
||||
lean_ctor_set(x_5, 1, x_1);
|
||||
lean_ctor_set(x_5, 2, x_3);
|
||||
lean_ctor_set(x_5, 3, x_4);
|
||||
lean_ctor_set(x_5, 4, x_1);
|
||||
lean_ctor_set(x_5, 4, x_4);
|
||||
lean_ctor_set(x_5, 5, x_1);
|
||||
return x_5;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
2079
stage0/stdlib/Lean/Meta/Tactic/Grind/MBTC.c
generated
2079
stage0/stdlib/Lean/Meta/Tactic/Grind/MBTC.c
generated
File diff suppressed because it is too large
Load diff
5
stage0/stdlib/Lean/Meta/Tactic/Grind/Main.c
generated
5
stage0/stdlib/Lean/Meta/Tactic/Grind/Main.c
generated
|
|
@ -3690,12 +3690,13 @@ lean_ctor_set(x_36, 6, x_34);
|
|||
lean_ctor_set(x_36, 7, x_32);
|
||||
lean_ctor_set(x_36, 8, x_35);
|
||||
x_37 = l_Lean_PersistentHashMap_empty___at_Lean_Meta_Grind_Split_instInhabitedState___spec__1;
|
||||
x_38 = lean_alloc_ctor(0, 5, 0);
|
||||
x_38 = lean_alloc_ctor(0, 6, 0);
|
||||
lean_ctor_set(x_38, 0, x_27);
|
||||
lean_ctor_set(x_38, 1, x_31);
|
||||
lean_ctor_set(x_38, 2, x_32);
|
||||
lean_ctor_set(x_38, 3, x_37);
|
||||
lean_ctor_set(x_38, 4, x_31);
|
||||
lean_ctor_set(x_38, 4, x_37);
|
||||
lean_ctor_set(x_38, 5, x_31);
|
||||
x_39 = l___private_Lean_Meta_Tactic_Grind_Main_0__Lean_Meta_Grind_mkGoal___lambda__4___closed__1;
|
||||
x_40 = l_Lean_Meta_Grind_mkParams___closed__2;
|
||||
x_41 = l_Lean_PersistentHashMap_empty___at___private_Lean_Meta_Tactic_Grind_Main_0__Lean_Meta_Grind_mkGoal___spec__1;
|
||||
|
|
|
|||
2
stage0/stdlib/Lean/Meta/Tactic/Grind/PP.c
generated
2
stage0/stdlib/Lean/Meta/Tactic/Grind/PP.c
generated
|
|
@ -7449,7 +7449,7 @@ _start:
|
|||
lean_object* x_8; lean_object* x_9; uint8_t x_10;
|
||||
x_8 = lean_ctor_get(x_1, 12);
|
||||
lean_inc(x_8);
|
||||
x_9 = lean_ctor_get(x_8, 4);
|
||||
x_9 = lean_ctor_get(x_8, 5);
|
||||
lean_inc(x_9);
|
||||
lean_dec(x_8);
|
||||
x_10 = l_List_isEmpty___rarg(x_9);
|
||||
|
|
|
|||
2559
stage0/stdlib/Lean/Meta/Tactic/Grind/Split.c
generated
2559
stage0/stdlib/Lean/Meta/Tactic/Grind/Split.c
generated
File diff suppressed because it is too large
Load diff
931
stage0/stdlib/Lean/Meta/Tactic/Grind/Types.c
generated
931
stage0/stdlib/Lean/Meta/Tactic/Grind/Types.c
generated
File diff suppressed because it is too large
Load diff
808
stage0/stdlib/Lean/Meta/Tactic/Grind/Util.c
generated
808
stage0/stdlib/Lean/Meta/Tactic/Grind/Util.c
generated
File diff suppressed because it is too large
Load diff
|
|
@ -85,6 +85,7 @@ static lean_object* l_Std_Tactic_BVDecide_instInhabitedBVBit___closed__1;
|
|||
static lean_object* l_Std_Tactic_BVDecide_BVBinOp_toString___closed__3;
|
||||
uint64_t l_BitVec_hash(lean_object*, lean_object*);
|
||||
static lean_object* l___private_Std_Tactic_BVDecide_Bitblast_BVExpr_Basic_0__Std_Tactic_BVDecide_reprBVBit____x40_Std_Tactic_BVDecide_Bitblast_BVExpr_Basic___hyg_287____closed__5;
|
||||
uint8_t l_instDecidableNot___rarg(uint8_t);
|
||||
LEAN_EXPORT lean_object* l_Std_Tactic_BVDecide_BVBinPred_toString___boxed(lean_object*);
|
||||
uint8_t lean_nat_dec_eq(lean_object*, lean_object*);
|
||||
static lean_object* l_Std_Tactic_BVDecide_BVBinPred_toString___closed__1;
|
||||
|
|
@ -169,6 +170,7 @@ LEAN_EXPORT lean_object* l_Std_Tactic_BVDecide_BVBinOp_toCtorIdx(uint8_t);
|
|||
LEAN_EXPORT lean_object* l_Std_Tactic_BVDecide_BVBinOp_eval___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l_Std_Tactic_BVDecide_BVBinPred_instToString;
|
||||
LEAN_EXPORT uint8_t l_Std_Tactic_BVDecide_instDecidableEqBVBit(lean_object*, lean_object*);
|
||||
uint8_t lean_uint64_dec_eq(uint64_t, uint64_t);
|
||||
LEAN_EXPORT uint8_t l_Std_Tactic_BVDecide_BVExpr_instDecidableEq(lean_object*, lean_object*, lean_object*);
|
||||
LEAN_EXPORT lean_object* l___private_Std_Tactic_BVDecide_Bitblast_BVExpr_Basic_0__Std_Tactic_BVDecide_hashBVBit____x40_Std_Tactic_BVDecide_Bitblast_BVExpr_Basic___hyg_35____boxed(lean_object*);
|
||||
static lean_object* l_Std_Tactic_BVDecide_BVExpr_toString___closed__5;
|
||||
|
|
@ -2070,28 +2072,18 @@ x_5 = lean_ptr_addr(x_3);
|
|||
x_6 = lean_usize_dec_eq(x_4, x_5);
|
||||
if (x_6 == 0)
|
||||
{
|
||||
uint64_t x_7; uint64_t x_8; uint8_t x_9; uint8_t x_10;
|
||||
x_7 = l_Std_Tactic_BVDecide_BVExpr_hashCode___override___rarg(x_2);
|
||||
x_8 = l_Std_Tactic_BVDecide_BVExpr_hashCode___override___rarg(x_3);
|
||||
x_9 = lean_uint64_dec_eq(x_7, x_8);
|
||||
x_10 = l_instDecidableNot___rarg(x_9);
|
||||
if (x_10 == 0)
|
||||
{
|
||||
switch (lean_obj_tag(x_2)) {
|
||||
case 0:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 0)
|
||||
{
|
||||
lean_object* x_7; lean_object* x_8; uint8_t x_9;
|
||||
x_7 = lean_ctor_get(x_2, 1);
|
||||
x_8 = lean_ctor_get(x_3, 1);
|
||||
x_9 = lean_nat_dec_eq(x_7, x_8);
|
||||
return x_9;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_10;
|
||||
x_10 = 0;
|
||||
return x_10;
|
||||
}
|
||||
}
|
||||
case 1:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 1)
|
||||
{
|
||||
lean_object* x_11; lean_object* x_12; uint8_t x_13;
|
||||
x_11 = lean_ctor_get(x_2, 1);
|
||||
x_12 = lean_ctor_get(x_3, 1);
|
||||
|
|
@ -2105,157 +2097,154 @@ x_14 = 0;
|
|||
return x_14;
|
||||
}
|
||||
}
|
||||
case 1:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 1)
|
||||
{
|
||||
lean_object* x_15; lean_object* x_16; uint8_t x_17;
|
||||
x_15 = lean_ctor_get(x_2, 1);
|
||||
x_16 = lean_ctor_get(x_3, 1);
|
||||
x_17 = lean_nat_dec_eq(x_15, x_16);
|
||||
return x_17;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_18;
|
||||
x_18 = 0;
|
||||
return x_18;
|
||||
}
|
||||
}
|
||||
case 2:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 2)
|
||||
{
|
||||
lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21;
|
||||
x_15 = lean_ctor_get(x_2, 0);
|
||||
x_16 = lean_ctor_get(x_2, 1);
|
||||
x_17 = lean_ctor_get(x_2, 3);
|
||||
x_18 = lean_ctor_get(x_3, 0);
|
||||
x_19 = lean_ctor_get(x_3, 1);
|
||||
x_20 = lean_ctor_get(x_3, 3);
|
||||
x_21 = lean_nat_dec_eq(x_15, x_18);
|
||||
if (x_21 == 0)
|
||||
lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25;
|
||||
x_19 = lean_ctor_get(x_2, 0);
|
||||
x_20 = lean_ctor_get(x_2, 1);
|
||||
x_21 = lean_ctor_get(x_2, 3);
|
||||
x_22 = lean_ctor_get(x_3, 0);
|
||||
x_23 = lean_ctor_get(x_3, 1);
|
||||
x_24 = lean_ctor_get(x_3, 3);
|
||||
x_25 = lean_nat_dec_eq(x_19, x_22);
|
||||
if (x_25 == 0)
|
||||
{
|
||||
uint8_t x_22;
|
||||
x_22 = 0;
|
||||
return x_22;
|
||||
uint8_t x_26;
|
||||
x_26 = 0;
|
||||
return x_26;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_23;
|
||||
x_23 = lean_nat_dec_eq(x_16, x_19);
|
||||
if (x_23 == 0)
|
||||
uint8_t x_27;
|
||||
x_27 = lean_nat_dec_eq(x_20, x_23);
|
||||
if (x_27 == 0)
|
||||
{
|
||||
uint8_t x_24;
|
||||
x_24 = 0;
|
||||
return x_24;
|
||||
uint8_t x_28;
|
||||
x_28 = 0;
|
||||
return x_28;
|
||||
}
|
||||
else
|
||||
{
|
||||
x_1 = x_18;
|
||||
x_2 = x_17;
|
||||
x_3 = x_20;
|
||||
x_1 = x_22;
|
||||
x_2 = x_21;
|
||||
x_3 = x_24;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_26;
|
||||
x_26 = 0;
|
||||
return x_26;
|
||||
uint8_t x_30;
|
||||
x_30 = 0;
|
||||
return x_30;
|
||||
}
|
||||
}
|
||||
case 3:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 3)
|
||||
{
|
||||
lean_object* x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; lean_object* x_32; uint8_t x_33;
|
||||
x_27 = lean_ctor_get(x_2, 1);
|
||||
x_28 = lean_ctor_get_uint8(x_2, sizeof(void*)*3 + 8);
|
||||
x_29 = lean_ctor_get(x_2, 2);
|
||||
x_30 = lean_ctor_get(x_3, 1);
|
||||
x_31 = lean_ctor_get_uint8(x_3, sizeof(void*)*3 + 8);
|
||||
x_32 = lean_ctor_get(x_3, 2);
|
||||
x_33 = l_Std_Tactic_BVDecide_instDecidableEqBVBinOp(x_28, x_31);
|
||||
if (x_33 == 0)
|
||||
lean_object* x_31; uint8_t x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_object* x_36; uint8_t x_37;
|
||||
x_31 = lean_ctor_get(x_2, 1);
|
||||
x_32 = lean_ctor_get_uint8(x_2, sizeof(void*)*3 + 8);
|
||||
x_33 = lean_ctor_get(x_2, 2);
|
||||
x_34 = lean_ctor_get(x_3, 1);
|
||||
x_35 = lean_ctor_get_uint8(x_3, sizeof(void*)*3 + 8);
|
||||
x_36 = lean_ctor_get(x_3, 2);
|
||||
x_37 = l_Std_Tactic_BVDecide_instDecidableEqBVBinOp(x_32, x_35);
|
||||
if (x_37 == 0)
|
||||
{
|
||||
uint8_t x_34;
|
||||
x_34 = 0;
|
||||
return x_34;
|
||||
uint8_t x_38;
|
||||
x_38 = 0;
|
||||
return x_38;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_35;
|
||||
x_35 = l_Std_Tactic_BVDecide_BVExpr_decEq(x_1, x_27, x_30);
|
||||
if (x_35 == 0)
|
||||
uint8_t x_39;
|
||||
x_39 = l_Std_Tactic_BVDecide_BVExpr_decEq(x_1, x_31, x_34);
|
||||
if (x_39 == 0)
|
||||
{
|
||||
uint8_t x_36;
|
||||
x_36 = 0;
|
||||
return x_36;
|
||||
uint8_t x_40;
|
||||
x_40 = 0;
|
||||
return x_40;
|
||||
}
|
||||
else
|
||||
{
|
||||
x_2 = x_29;
|
||||
x_3 = x_32;
|
||||
x_2 = x_33;
|
||||
x_3 = x_36;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_38;
|
||||
x_38 = 0;
|
||||
return x_38;
|
||||
uint8_t x_42;
|
||||
x_42 = 0;
|
||||
return x_42;
|
||||
}
|
||||
}
|
||||
case 4:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 4)
|
||||
{
|
||||
lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43;
|
||||
x_39 = lean_ctor_get(x_2, 1);
|
||||
x_40 = lean_ctor_get(x_2, 2);
|
||||
x_41 = lean_ctor_get(x_3, 1);
|
||||
x_42 = lean_ctor_get(x_3, 2);
|
||||
x_43 = l___private_Std_Tactic_BVDecide_Bitblast_BVExpr_Basic_0__Std_Tactic_BVDecide_decEqBVUnOp____x40_Std_Tactic_BVDecide_Bitblast_BVExpr_Basic___hyg_1156_(x_39, x_41);
|
||||
if (x_43 == 0)
|
||||
lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47;
|
||||
x_43 = lean_ctor_get(x_2, 1);
|
||||
x_44 = lean_ctor_get(x_2, 2);
|
||||
x_45 = lean_ctor_get(x_3, 1);
|
||||
x_46 = lean_ctor_get(x_3, 2);
|
||||
x_47 = l___private_Std_Tactic_BVDecide_Bitblast_BVExpr_Basic_0__Std_Tactic_BVDecide_decEqBVUnOp____x40_Std_Tactic_BVDecide_Bitblast_BVExpr_Basic___hyg_1156_(x_43, x_45);
|
||||
if (x_47 == 0)
|
||||
{
|
||||
uint8_t x_44;
|
||||
x_44 = 0;
|
||||
return x_44;
|
||||
uint8_t x_48;
|
||||
x_48 = 0;
|
||||
return x_48;
|
||||
}
|
||||
else
|
||||
{
|
||||
x_2 = x_40;
|
||||
x_3 = x_42;
|
||||
x_2 = x_44;
|
||||
x_3 = x_46;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_46;
|
||||
x_46 = 0;
|
||||
return x_46;
|
||||
uint8_t x_50;
|
||||
x_50 = 0;
|
||||
return x_50;
|
||||
}
|
||||
}
|
||||
case 5:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 5)
|
||||
{
|
||||
lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55;
|
||||
x_47 = lean_ctor_get(x_2, 0);
|
||||
x_48 = lean_ctor_get(x_2, 1);
|
||||
x_49 = lean_ctor_get(x_2, 3);
|
||||
x_50 = lean_ctor_get(x_2, 4);
|
||||
x_51 = lean_ctor_get(x_3, 0);
|
||||
x_52 = lean_ctor_get(x_3, 1);
|
||||
x_53 = lean_ctor_get(x_3, 3);
|
||||
x_54 = lean_ctor_get(x_3, 4);
|
||||
x_55 = lean_nat_dec_eq(x_47, x_51);
|
||||
if (x_55 == 0)
|
||||
{
|
||||
uint8_t x_56;
|
||||
x_56 = 0;
|
||||
return x_56;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_57;
|
||||
x_57 = lean_nat_dec_eq(x_48, x_52);
|
||||
if (x_57 == 0)
|
||||
{
|
||||
uint8_t x_58;
|
||||
x_58 = 0;
|
||||
return x_58;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_59;
|
||||
x_59 = l_Std_Tactic_BVDecide_BVExpr_decEq(x_51, x_49, x_53);
|
||||
lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; uint8_t x_59;
|
||||
x_51 = lean_ctor_get(x_2, 0);
|
||||
x_52 = lean_ctor_get(x_2, 1);
|
||||
x_53 = lean_ctor_get(x_2, 3);
|
||||
x_54 = lean_ctor_get(x_2, 4);
|
||||
x_55 = lean_ctor_get(x_3, 0);
|
||||
x_56 = lean_ctor_get(x_3, 1);
|
||||
x_57 = lean_ctor_get(x_3, 3);
|
||||
x_58 = lean_ctor_get(x_3, 4);
|
||||
x_59 = lean_nat_dec_eq(x_51, x_55);
|
||||
if (x_59 == 0)
|
||||
{
|
||||
uint8_t x_60;
|
||||
|
|
@ -2264,9 +2253,29 @@ return x_60;
|
|||
}
|
||||
else
|
||||
{
|
||||
x_1 = x_52;
|
||||
x_2 = x_50;
|
||||
x_3 = x_54;
|
||||
uint8_t x_61;
|
||||
x_61 = lean_nat_dec_eq(x_52, x_56);
|
||||
if (x_61 == 0)
|
||||
{
|
||||
uint8_t x_62;
|
||||
x_62 = 0;
|
||||
return x_62;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_63;
|
||||
x_63 = l_Std_Tactic_BVDecide_BVExpr_decEq(x_55, x_53, x_57);
|
||||
if (x_63 == 0)
|
||||
{
|
||||
uint8_t x_64;
|
||||
x_64 = 0;
|
||||
return x_64;
|
||||
}
|
||||
else
|
||||
{
|
||||
x_1 = x_56;
|
||||
x_2 = x_54;
|
||||
x_3 = x_58;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
|
|
@ -2274,194 +2283,201 @@ goto _start;
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_62;
|
||||
x_62 = 0;
|
||||
return x_62;
|
||||
uint8_t x_66;
|
||||
x_66 = 0;
|
||||
return x_66;
|
||||
}
|
||||
}
|
||||
case 6:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 6)
|
||||
{
|
||||
lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69;
|
||||
x_63 = lean_ctor_get(x_2, 0);
|
||||
x_64 = lean_ctor_get(x_2, 2);
|
||||
x_65 = lean_ctor_get(x_2, 3);
|
||||
x_66 = lean_ctor_get(x_3, 0);
|
||||
x_67 = lean_ctor_get(x_3, 2);
|
||||
x_68 = lean_ctor_get(x_3, 3);
|
||||
x_69 = lean_nat_dec_eq(x_64, x_67);
|
||||
if (x_69 == 0)
|
||||
lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73;
|
||||
x_67 = lean_ctor_get(x_2, 0);
|
||||
x_68 = lean_ctor_get(x_2, 2);
|
||||
x_69 = lean_ctor_get(x_2, 3);
|
||||
x_70 = lean_ctor_get(x_3, 0);
|
||||
x_71 = lean_ctor_get(x_3, 2);
|
||||
x_72 = lean_ctor_get(x_3, 3);
|
||||
x_73 = lean_nat_dec_eq(x_68, x_71);
|
||||
if (x_73 == 0)
|
||||
{
|
||||
uint8_t x_70;
|
||||
x_70 = 0;
|
||||
return x_70;
|
||||
uint8_t x_74;
|
||||
x_74 = 0;
|
||||
return x_74;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_71;
|
||||
x_71 = lean_nat_dec_eq(x_63, x_66);
|
||||
if (x_71 == 0)
|
||||
uint8_t x_75;
|
||||
x_75 = lean_nat_dec_eq(x_67, x_70);
|
||||
if (x_75 == 0)
|
||||
{
|
||||
uint8_t x_72;
|
||||
x_72 = 0;
|
||||
return x_72;
|
||||
uint8_t x_76;
|
||||
x_76 = 0;
|
||||
return x_76;
|
||||
}
|
||||
else
|
||||
{
|
||||
x_1 = x_66;
|
||||
x_2 = x_65;
|
||||
x_3 = x_68;
|
||||
x_1 = x_70;
|
||||
x_2 = x_69;
|
||||
x_3 = x_72;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_74;
|
||||
x_74 = 0;
|
||||
return x_74;
|
||||
uint8_t x_78;
|
||||
x_78 = 0;
|
||||
return x_78;
|
||||
}
|
||||
}
|
||||
case 7:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 7)
|
||||
{
|
||||
lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81;
|
||||
x_75 = lean_ctor_get(x_2, 1);
|
||||
x_76 = lean_ctor_get(x_2, 2);
|
||||
x_77 = lean_ctor_get(x_2, 3);
|
||||
x_78 = lean_ctor_get(x_3, 1);
|
||||
x_79 = lean_ctor_get(x_3, 2);
|
||||
x_80 = lean_ctor_get(x_3, 3);
|
||||
x_81 = lean_nat_dec_eq(x_75, x_78);
|
||||
if (x_81 == 0)
|
||||
lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; uint8_t x_85;
|
||||
x_79 = lean_ctor_get(x_2, 1);
|
||||
x_80 = lean_ctor_get(x_2, 2);
|
||||
x_81 = lean_ctor_get(x_2, 3);
|
||||
x_82 = lean_ctor_get(x_3, 1);
|
||||
x_83 = lean_ctor_get(x_3, 2);
|
||||
x_84 = lean_ctor_get(x_3, 3);
|
||||
x_85 = lean_nat_dec_eq(x_79, x_82);
|
||||
if (x_85 == 0)
|
||||
{
|
||||
uint8_t x_82;
|
||||
x_82 = 0;
|
||||
return x_82;
|
||||
uint8_t x_86;
|
||||
x_86 = 0;
|
||||
return x_86;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_83;
|
||||
x_83 = l_Std_Tactic_BVDecide_BVExpr_decEq(x_1, x_76, x_79);
|
||||
if (x_83 == 0)
|
||||
uint8_t x_87;
|
||||
x_87 = l_Std_Tactic_BVDecide_BVExpr_decEq(x_1, x_80, x_83);
|
||||
if (x_87 == 0)
|
||||
{
|
||||
uint8_t x_84;
|
||||
x_84 = 0;
|
||||
return x_84;
|
||||
uint8_t x_88;
|
||||
x_88 = 0;
|
||||
return x_88;
|
||||
}
|
||||
else
|
||||
{
|
||||
x_1 = x_78;
|
||||
x_2 = x_77;
|
||||
x_3 = x_80;
|
||||
x_1 = x_82;
|
||||
x_2 = x_81;
|
||||
x_3 = x_84;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_86;
|
||||
x_86 = 0;
|
||||
return x_86;
|
||||
uint8_t x_90;
|
||||
x_90 = 0;
|
||||
return x_90;
|
||||
}
|
||||
}
|
||||
case 8:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 8)
|
||||
{
|
||||
lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93;
|
||||
x_87 = lean_ctor_get(x_2, 1);
|
||||
x_88 = lean_ctor_get(x_2, 2);
|
||||
x_89 = lean_ctor_get(x_2, 3);
|
||||
x_90 = lean_ctor_get(x_3, 1);
|
||||
x_91 = lean_ctor_get(x_3, 2);
|
||||
x_92 = lean_ctor_get(x_3, 3);
|
||||
x_93 = lean_nat_dec_eq(x_87, x_90);
|
||||
if (x_93 == 0)
|
||||
lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; uint8_t x_97;
|
||||
x_91 = lean_ctor_get(x_2, 1);
|
||||
x_92 = lean_ctor_get(x_2, 2);
|
||||
x_93 = lean_ctor_get(x_2, 3);
|
||||
x_94 = lean_ctor_get(x_3, 1);
|
||||
x_95 = lean_ctor_get(x_3, 2);
|
||||
x_96 = lean_ctor_get(x_3, 3);
|
||||
x_97 = lean_nat_dec_eq(x_91, x_94);
|
||||
if (x_97 == 0)
|
||||
{
|
||||
uint8_t x_94;
|
||||
x_94 = 0;
|
||||
return x_94;
|
||||
uint8_t x_98;
|
||||
x_98 = 0;
|
||||
return x_98;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_95;
|
||||
x_95 = l_Std_Tactic_BVDecide_BVExpr_decEq(x_1, x_88, x_91);
|
||||
if (x_95 == 0)
|
||||
uint8_t x_99;
|
||||
x_99 = l_Std_Tactic_BVDecide_BVExpr_decEq(x_1, x_92, x_95);
|
||||
if (x_99 == 0)
|
||||
{
|
||||
uint8_t x_96;
|
||||
x_96 = 0;
|
||||
return x_96;
|
||||
uint8_t x_100;
|
||||
x_100 = 0;
|
||||
return x_100;
|
||||
}
|
||||
else
|
||||
{
|
||||
x_1 = x_90;
|
||||
x_2 = x_89;
|
||||
x_3 = x_92;
|
||||
x_1 = x_94;
|
||||
x_2 = x_93;
|
||||
x_3 = x_96;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_98;
|
||||
x_98 = 0;
|
||||
return x_98;
|
||||
uint8_t x_102;
|
||||
x_102 = 0;
|
||||
return x_102;
|
||||
}
|
||||
}
|
||||
default:
|
||||
{
|
||||
if (lean_obj_tag(x_3) == 9)
|
||||
{
|
||||
lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; uint8_t x_105;
|
||||
x_99 = lean_ctor_get(x_2, 1);
|
||||
x_100 = lean_ctor_get(x_2, 2);
|
||||
x_101 = lean_ctor_get(x_2, 3);
|
||||
x_102 = lean_ctor_get(x_3, 1);
|
||||
x_103 = lean_ctor_get(x_3, 2);
|
||||
x_104 = lean_ctor_get(x_3, 3);
|
||||
x_105 = lean_nat_dec_eq(x_99, x_102);
|
||||
if (x_105 == 0)
|
||||
lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; uint8_t x_109;
|
||||
x_103 = lean_ctor_get(x_2, 1);
|
||||
x_104 = lean_ctor_get(x_2, 2);
|
||||
x_105 = lean_ctor_get(x_2, 3);
|
||||
x_106 = lean_ctor_get(x_3, 1);
|
||||
x_107 = lean_ctor_get(x_3, 2);
|
||||
x_108 = lean_ctor_get(x_3, 3);
|
||||
x_109 = lean_nat_dec_eq(x_103, x_106);
|
||||
if (x_109 == 0)
|
||||
{
|
||||
uint8_t x_106;
|
||||
x_106 = 0;
|
||||
return x_106;
|
||||
uint8_t x_110;
|
||||
x_110 = 0;
|
||||
return x_110;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_107;
|
||||
x_107 = l_Std_Tactic_BVDecide_BVExpr_decEq(x_1, x_100, x_103);
|
||||
if (x_107 == 0)
|
||||
uint8_t x_111;
|
||||
x_111 = l_Std_Tactic_BVDecide_BVExpr_decEq(x_1, x_104, x_107);
|
||||
if (x_111 == 0)
|
||||
{
|
||||
uint8_t x_108;
|
||||
x_108 = 0;
|
||||
return x_108;
|
||||
uint8_t x_112;
|
||||
x_112 = 0;
|
||||
return x_112;
|
||||
}
|
||||
else
|
||||
{
|
||||
x_1 = x_102;
|
||||
x_2 = x_101;
|
||||
x_3 = x_104;
|
||||
x_1 = x_106;
|
||||
x_2 = x_105;
|
||||
x_3 = x_108;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_110;
|
||||
x_110 = 0;
|
||||
return x_110;
|
||||
uint8_t x_114;
|
||||
x_114 = 0;
|
||||
return x_114;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_111;
|
||||
x_111 = 1;
|
||||
return x_111;
|
||||
uint8_t x_115;
|
||||
x_115 = 0;
|
||||
return x_115;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_116;
|
||||
x_116 = 1;
|
||||
return x_116;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue